PART in wsdl

Hello,
I'm analyzing  the wsdl document generated by .net framework of a web service.
The possible interface given from that environment is SOAP, HTTP GET, and 
HTTP POST.
This is the example: I've a method called getName, it get the name as a 
string and return the name as a string.
In WSDL when I define the message i have getNameSoapIn, get NameSoapOut, 
getNameHttpGetIn, getNameHttpGetOut, ..., so the possible getNameSoapIn 
will be:

<message name="getNameSoapIn">
                 <part name="parameters" element="s0:getName"/>
</message>

while the possible getNameHttpGetIn will be:

<message name="getNameHttpGetIn">
                 <part name="Name" type="s:string"/>
</message>

where I've previously defined

xmlns:s="http://www.w3.org/2001/XMLSchema"

and

<s:element name="getName">
         <s:complexType>
                 <s:sequence>
                         <s:element minOccurs="0" maxOccurs="1" name="Name" 
type="s:string"/>
                 </s:sequence>
         </s:complexType>
</s:element>

My question is Why the http message doesn't use the same s0:getName?

Thanks in advance
Emanuele Cappelletti

Received on Friday, 27 September 2002 07:22:32 UTC