Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Description / Soap12ProtocolImporter.cs / 1305376 / Soap12ProtocolImporter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All Rights Reserved. // Information Contained Herein is Proprietary and Confidential. // //----------------------------------------------------------------------------- namespace System.Web.Services.Description { using System.Web.Services; using System.Web.Services.Protocols; using System.Xml; using System.Xml.Serialization; using System.Xml.Schema; using System.Collections; using System; using System.Reflection; using System.CodeDom; using System.Web.Services.Configuration; using System.Diagnostics; using System.ComponentModel; using System.Security.Permissions; using System.Globalization; ///[PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] internal class Soap12ProtocolImporter : SoapProtocolImporter { public override string ProtocolName { get { return "Soap12"; } } protected override bool IsBindingSupported() { Soap12Binding soapBinding = (Soap12Binding)Binding.Extensions.Find(typeof(Soap12Binding)); if (soapBinding == null) return false; if (GetTransport(soapBinding.Transport) == null) { UnsupportedBindingWarning(Res.GetString(Res.ThereIsNoSoapTransportImporterThatUnderstands1, soapBinding.Transport)); return false; } return true; } protected override bool IsSoapEncodingPresent(string uriList) { int iStart = 0; do { iStart = uriList.IndexOf(Soap12.Encoding, iStart, StringComparison.Ordinal); if (iStart < 0) break; int iEnd = iStart + Soap12.Encoding.Length; if (iStart == 0 || uriList[iStart-1] == ' ') if (iEnd == uriList.Length || uriList[iEnd] == ' ') return true; iStart = iEnd; } while (iStart < uriList.Length); // not soap 1.2 encoding. let's detect the soap 1.1 encoding and give a better error message. // otherwise just default to the normal "encoding style not supported" error. if (base.IsSoapEncodingPresent(uriList)) UnsupportedOperationBindingWarning(Res.GetString(Res.WebSoap11EncodingStyleNotSupported1, Soap12.Encoding)); return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GridViewCellAutomationPeer.cs
- ComPlusTypeLoader.cs
- ScriptRegistrationManager.cs
- TableItemStyle.cs
- CategoryGridEntry.cs
- WindowsGraphics.cs
- CodeCastExpression.cs
- Positioning.cs
- ContentPropertyAttribute.cs
- ToolboxItemAttribute.cs
- WindowVisualStateTracker.cs
- WpfKnownTypeInvoker.cs
- LinqDataSourceContextData.cs
- WMIGenerator.cs
- SHA384.cs
- Types.cs
- TextSpanModifier.cs
- StrokeCollectionDefaultValueFactory.cs
- DetailsViewDeletedEventArgs.cs
- DragEvent.cs
- DataServiceHostWrapper.cs
- StrongNameKeyPair.cs
- NetCodeGroup.cs
- ValuePatternIdentifiers.cs
- InfoCardArgumentException.cs
- HandlerFactoryWrapper.cs
- IChannel.cs
- ControlBuilderAttribute.cs
- SqlNotificationRequest.cs
- GeneralTransform.cs
- XamlPoint3DCollectionSerializer.cs
- ECDiffieHellmanCng.cs
- PolicyImporterElementCollection.cs
- SimpleWorkerRequest.cs
- SqlCommand.cs
- ManagedWndProcTracker.cs
- PerformanceCounter.cs
- SpeechRecognitionEngine.cs
- StatusBarItemAutomationPeer.cs
- WhereQueryOperator.cs
- Msec.cs
- XmlHelper.cs
- VectorAnimation.cs
- HotCommands.cs
- GenericRootAutomationPeer.cs
- Clock.cs
- RsaSecurityToken.cs
- DataServiceQuery.cs
- ToolStripProgressBar.cs
- ContextMenu.cs
- FixedElement.cs
- DataGridViewCellPaintingEventArgs.cs
- BasePattern.cs
- ByteConverter.cs
- HtmlElementEventArgs.cs
- ConfigXmlWhitespace.cs
- SectionUpdates.cs
- SafeArrayTypeMismatchException.cs
- SimpleWebHandlerParser.cs
- MailDefinition.cs
- ConfigXmlDocument.cs
- ChannelManager.cs
- PenLineJoinValidation.cs
- WebEventTraceProvider.cs
- OleDbFactory.cs
- EventTrigger.cs
- HitTestParameters.cs
- HebrewNumber.cs
- Globals.cs
- GenericTypeParameterBuilder.cs
- RandomNumberGenerator.cs
- ObjectListFieldsPage.cs
- ConfigUtil.cs
- ListView.cs
- DiscoveryReference.cs
- SerTrace.cs
- CodeNamespaceImportCollection.cs
- SafePEFileHandle.cs
- ArraySegment.cs
- LexicalChunk.cs
- ToolboxItemFilterAttribute.cs
- XmlEncodedRawTextWriter.cs
- RecordBuilder.cs
- _NTAuthentication.cs
- XmlSiteMapProvider.cs
- MenuItemBinding.cs
- CodeTryCatchFinallyStatement.cs
- CodeCastExpression.cs
- Bezier.cs
- UrlMappingsModule.cs
- Interlocked.cs
- DrawingBrush.cs
- ExpressionEvaluator.cs
- MenuCommands.cs
- FloaterParagraph.cs
- FilteredDataSetHelper.cs
- ArithmeticException.cs
- ClipboardData.cs
- LinearQuaternionKeyFrame.cs
- DispatcherExceptionEventArgs.cs