Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Description / Soap12ProtocolReflector.cs / 1305376 / Soap12ProtocolReflector.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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.Web.Services.Configuration; internal class Soap12ProtocolReflector : SoapProtocolReflector { Hashtable requestElements; Hashtable actions; XmlQualifiedName soap11PortType; internal override WsiProfiles ConformsTo { get { return WsiProfiles.None; } } public override string ProtocolName { get { return "Soap12"; } } protected override void BeginClass() { requestElements = new Hashtable(); actions = new Hashtable(); soap11PortType = null; base.BeginClass(); } protected override bool ReflectMethod() { if (base.ReflectMethod()) { if (Binding != null) { // SoapMethod.portType tracks the first portType created for this method // we want to make sure there's only one portType and set of messages per method // so we delete ours if an existing portType already exists for this method. soap11PortType = SoapMethod.portType; if (soap11PortType != Binding.Type) HeaderMessages.Clear(); } return true; } return false; } protected override void EndClass() { if (PortType == null || Binding == null) return; // external binding; if (soap11PortType != null && soap11PortType != Binding.Type) { // we want to share soap 1.1's portType and messages so we delete ours and reference theirs foreach (Operation op in PortType.Operations) { foreach (OperationMessage msg in op.Messages) { ServiceDescription sd = GetServiceDescription(msg.Message.Namespace); if (sd != null) { Message m = sd.Messages[msg.Message.Name]; if (m != null) sd.Messages.Remove(m); } } } Binding.Type = soap11PortType; PortType.ServiceDescription.PortTypes.Remove(PortType); } } protected override SoapBinding CreateSoapBinding(SoapBindingStyle style) { Soap12Binding soapBinding = new Soap12Binding(); soapBinding.Transport = Soap12Binding.HttpTransport; soapBinding.Style = style; return soapBinding; } protected override SoapAddressBinding CreateSoapAddressBinding(string serviceUrl) { Soap12AddressBinding soapAddress = new Soap12AddressBinding(); soapAddress.Location = serviceUrl; return soapAddress; } protected override SoapOperationBinding CreateSoapOperationBinding(SoapBindingStyle style, string action) { Soap12OperationBinding soapOperation = new Soap12OperationBinding(); soapOperation.SoapAction = action; soapOperation.Style = style; soapOperation.Method = SoapMethod; DealWithAmbiguity(action, SoapMethod.requestElementName.ToString(), soapOperation); return soapOperation; } protected override SoapBodyBinding CreateSoapBodyBinding(SoapBindingUse use, string ns) { Soap12BodyBinding soapBodyBinding = new Soap12BodyBinding(); soapBodyBinding.Use = use; if (use == SoapBindingUse.Encoded) soapBodyBinding.Encoding = Soap12.Encoding; soapBodyBinding.Namespace = ns; return soapBodyBinding; } protected override SoapHeaderBinding CreateSoapHeaderBinding(XmlQualifiedName message, string partName, SoapBindingUse use) { return CreateSoapHeaderBinding(message, partName, null, use); } protected override SoapHeaderBinding CreateSoapHeaderBinding(XmlQualifiedName message, string partName, string ns, SoapBindingUse use) { Soap12HeaderBinding soapHeaderBinding = new Soap12HeaderBinding(); soapHeaderBinding.Message = message; soapHeaderBinding.Part = partName; soapHeaderBinding.Namespace = ns; soapHeaderBinding.Use = use; if (use == SoapBindingUse.Encoded) soapHeaderBinding.Encoding = Soap12.Encoding; return soapHeaderBinding; } private void DealWithAmbiguity(string action, string requestElement, Soap12OperationBinding operation) { Soap12OperationBinding duplicateActionOperation = (Soap12OperationBinding)actions[action]; if (duplicateActionOperation != null) { operation.DuplicateBySoapAction = duplicateActionOperation; duplicateActionOperation.DuplicateBySoapAction = operation; CheckOperationDuplicates(duplicateActionOperation); } else actions[action] = operation; Soap12OperationBinding duplicateRequestElementOperation = (Soap12OperationBinding)requestElements[requestElement]; if (duplicateRequestElementOperation != null) { operation.DuplicateByRequestElement = duplicateRequestElementOperation; duplicateRequestElementOperation.DuplicateByRequestElement = operation; CheckOperationDuplicates(duplicateRequestElementOperation); } else requestElements[requestElement] = operation; CheckOperationDuplicates(operation); } private void CheckOperationDuplicates(Soap12OperationBinding operation) { // we require soap action if we can't route on request element if (operation.DuplicateByRequestElement != null) { // except if we also can't route on soap action, which is an error if (operation.DuplicateBySoapAction != null) throw new InvalidOperationException(Res.GetString(Res.TheMethodsAndUseTheSameRequestElementAndSoapActionXmlns6, operation.Method.name, operation.DuplicateByRequestElement.Method.name, operation.Method.requestElementName.Name, operation.Method.requestElementName.Namespace, operation.DuplicateBySoapAction.Method.name, operation.Method.action)); else operation.SoapActionRequired = true; } else operation.SoapActionRequired = false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Int32AnimationUsingKeyFrames.cs
- SafeNativeMethods.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- SourceElementsCollection.cs
- ComponentEvent.cs
- NetworkInterface.cs
- QueryResultOp.cs
- UIPermission.cs
- Types.cs
- LayoutInformation.cs
- RoleGroup.cs
- ObjectDataSourceDisposingEventArgs.cs
- MessageSecurityOverMsmqElement.cs
- SmiMetaData.cs
- FramingDecoders.cs
- IncrementalHitTester.cs
- Perspective.cs
- XmlUnspecifiedAttribute.cs
- MailBnfHelper.cs
- ZoneIdentityPermission.cs
- CanExecuteRoutedEventArgs.cs
- PersonalizationProvider.cs
- DirectoryNotFoundException.cs
- Section.cs
- PageThemeCodeDomTreeGenerator.cs
- ListViewTableCell.cs
- SubclassTypeValidator.cs
- SqlCachedBuffer.cs
- MetadataFile.cs
- EventToken.cs
- TypeDelegator.cs
- CodeParameterDeclarationExpressionCollection.cs
- SqlErrorCollection.cs
- TemplateKeyConverter.cs
- SqlConnectionManager.cs
- ComPlusTypeLoader.cs
- TokenizerHelper.cs
- PersistChildrenAttribute.cs
- returneventsaver.cs
- DataSourceSelectArguments.cs
- SoapIncludeAttribute.cs
- HiddenFieldPageStatePersister.cs
- CommandID.cs
- TripleDES.cs
- ImageIndexConverter.cs
- DetailsViewModeEventArgs.cs
- DataObjectSettingDataEventArgs.cs
- ListenerConnectionModeReader.cs
- Brush.cs
- ParameterElementCollection.cs
- UnrecognizedAssertionsBindingElement.cs
- XomlDesignerLoader.cs
- SyndicationDeserializer.cs
- Resources.Designer.cs
- InvalidFilterCriteriaException.cs
- XmlElement.cs
- BuilderPropertyEntry.cs
- ProfileSection.cs
- _ConnectStream.cs
- Convert.cs
- DoubleCollection.cs
- TimeZone.cs
- MimeXmlImporter.cs
- TraceUtility.cs
- SmtpMail.cs
- WebResourceAttribute.cs
- UnsafeNativeMethods.cs
- BasicViewGenerator.cs
- CodeAccessPermission.cs
- RadioButtonList.cs
- SqlDataSourceSelectingEventArgs.cs
- SettingsPropertyCollection.cs
- ZipIOCentralDirectoryBlock.cs
- OracleDataReader.cs
- TreeNodeCollection.cs
- CacheDict.cs
- UInt64.cs
- QuaternionKeyFrameCollection.cs
- RuntimeHelpers.cs
- PassportAuthenticationEventArgs.cs
- RootBrowserWindowAutomationPeer.cs
- CompilerHelpers.cs
- AddDataControlFieldDialog.cs
- NavigationProperty.cs
- OutOfProcStateClientManager.cs
- CssStyleCollection.cs
- CacheHelper.cs
- FormCollection.cs
- Vector3dCollection.cs
- MiniLockedBorderGlyph.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- ListViewCancelEventArgs.cs
- Serializer.cs
- XmlConvert.cs
- HtmlInputText.cs
- SpellerStatusTable.cs
- ApplicationFileParser.cs
- MoveSizeWinEventHandler.cs
- XmlCustomFormatter.cs
- ValidatorAttribute.cs