the part component changed its name to name=part, (method1 instead of method1Request), see below:
should I do something additional, or how is this correctly interpreted by a wsdl-reader?? I read it that the message method1Request has a type=xsd:anyType, but it should point to my input schema...??
<wsdl:types>
<xsd:schema xmlns:tns="http://biryani.med.yale.edu" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="method1Request"> ....my input schema.... </xsd:element>
<schema targetNamespace="" xmlns="http://www.w3.org/2001/XMLSchema"> <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> <element name="method1" type="xsd:anyType"/> <element name="method1Return" type="xsd:anyType"/> </schema>
</wsdl:types>
<wsdl:message name="method1Response"> <wsdl:part element="method1Return" name="method1Return"/> </wsdl:message> <wsdl:message name="method1Request"> <wsdl:part element="method1" name="part"/> </wsdl:message>