1 //
2 // System.Web.Services.Description.SoapBinding.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
9 
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 
31 using System.ComponentModel;
32 using System.Web.Services.Configuration;
33 using System.Xml.Schema;
34 using System.Xml.Serialization;
35 
36 namespace System.Web.Services.Description {
37 	[XmlFormatExtensionPrefix ("soap", "http://schemas.xmlsoap.org/wsdl/soap/")]
38 	[XmlFormatExtensionPrefix ("soapenc", "http://schemas.xmlsoap.org/soap/encoding/")]
39 	[XmlFormatExtension ("binding", "http://schemas.xmlsoap.org/wsdl/soap/", typeof (Binding))]
40 	public class SoapBinding : ServiceDescriptionFormatExtension {
41 
42 		#region Fields
43 
44 		public const string HttpTransport = "http://schemas.xmlsoap.org/soap/http";
45 		public const string Namespace = "http://schemas.xmlsoap.org/wsdl/soap/";
46 
47 		SoapBindingStyle style;
48 		string transport;
49 
50 		static XmlSchema schema;
51 
52 		#endregion // Fields
53 
54 		#region Constructors
55 
SoapBinding()56 		public SoapBinding ()
57 		{
58 			style = SoapBindingStyle.Document;
59 			transport = String.Empty;
60 		}
61 
62 		#endregion // Constructors
63 
64 		#region Properties
65 
66 		public static XmlSchema Schema {
67 			get {
68 				if (schema == null) {
69 					schema = XmlSchema.Read (typeof (SoapBinding).Assembly.GetManifestResourceStream ("wsdl-1.1-soap.xsd"), null);
70 				}
71 				return schema;
72 			}
73 		}
74 
75 		// LAMESPEC: .NET says that the default value is SoapBindingStyle.Document but
76 		// reflection shows this attribute is SoapBindingStyle.Default
77 
78 		[DefaultValue (SoapBindingStyle.Document)]
79 		[XmlAttribute ("style")]
80 		public SoapBindingStyle Style {
81 			get { return style; }
82 			set { style = value; }
83 		}
84 
85 		[XmlAttribute ("transport")]
86 		public string Transport {
87 			get { return transport; }
88 			set { transport = value; }
89 		}
90 
91 		#endregion // Properties
92 	}
93 }
94