xmlns:soap attribute of SOAP element - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T08:40:03Zhttp://stackoverflow.com/feeds/question/872740http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/872740/xmlnssoap-attribute-of-soap-element1xmlns:soap attribute of SOAP elementWarrior2009-05-16T16:20:24Z2009-05-18T12:27:16Z
<p>I just now started learning web services.I cannot understand the use of xmlns:soap attribute of SOAP element.Thanks.</p>
http://stackoverflow.com/questions/872740/xmlnssoap-attribute-of-soap-element/872769#8727692Answer by John Saunders for xmlns:soap attribute of SOAP elementJohn Saunders2009-05-16T16:33:24Z2009-05-16T16:33:24Z<p>Those "xmlns:" attributes are not specific to SOAP. They define prefixes that will later be used to refer to XML namespaces. Example:</p>
<pre><code><DTS:Executable xmlns:DTS="www.microsoft.com/SqlServer/Dts"
DTS:ExecutableType="SSIS.Package.2">
</code></pre>
<p>This defines DTS as a prefix that means the namespace "www.microsoft.com/SqlServer/Dts". It then refers to the ExecutableType attribute from that namespace.</p>
<p>XML namespaces do the same job as a namespace in C# or C++. They provide a space in which to define names, so that names from one namespace do not conflict with names in another. You could define your own "ExecutableType" attribute, and it could mean something totally different from the one that Microsoft defined. Both could be used in the same document, with no ambiguity about which was which.</p>
http://stackoverflow.com/questions/872740/xmlnssoap-attribute-of-soap-element/872772#8727721Answer by littlegeek for xmlns:soap attribute of SOAP elementlittlegeek2009-05-16T16:36:14Z2009-05-16T16:36:14Z<p>quote from the W3C SOAP Spec should help here too</p>
<p><a href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#%5FToc478383497" rel="nofollow">http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383497</a></p>
<blockquote>
<p>A SOAP application SHOULD include the
proper SOAP namespace on all elements
and attributes defined by SOAP in
messages that it generates. A SOAP
application MUST be able to process
SOAP namespaces in messages that it
receives. It MUST discard messages
that have incorrect namespaces (see
section 4.4) and it MAY process SOAP
messages without SOAP namespaces as
though they had the correct SOAP
namespaces.</p>
<p>SOAP defines two namespaces (see [8]
for more information on XML
namespaces):</p>
<p>•The SOAP envelope has the namespace
identifier
"http://schemas.xmlsoap.org/soap/envelope/"
•The SOAP serialization has the
namespace identifier
"http://schemas.xmlsoap.org/soap/encoding/"
A SOAP message MUST NOT contain a
Document Type Declaration. A SOAP
message MUST NOT contain Processing
Instructions. [7]</p>
</blockquote>
http://stackoverflow.com/questions/872740/xmlnssoap-attribute-of-soap-element/877491#8774911Answer by Homeless Dave for xmlns:soap attribute of SOAP elementHomeless Dave2009-05-18T12:27:16Z2009-05-18T12:27:16Z<p>Based on the level of your question (Please don't take offense), it sounds like you are new to XML as well as XML based Web services. John Saunders correctly describes XML namespaces and their uses. If you are looking to get a better understanding of XML and XML based Web services, I recommend that you start with the W3 Schools' XML tutorial (specifically the section on XML namespaces).</p>
<p>The tutorial is located at: <a href="http://www.w3schools.com/xml/default.asp" rel="nofollow">http://www.w3schools.com/xml/default.asp</a></p>
<p>The section on XML namespaces is located at: <a href="http://www.w3schools.com/xml/xml%5Fnamespaces.asp" rel="nofollow">http://www.w3schools.com/xml/xml_namespaces.asp</a></p>