I someone works with Spring-WS, he has to face WSDL problems (and maybe SOAP, WS-I, ... too).
It would be nice to have a reference to other newsgroups or a forum which can help, because this problems are not directly Spring-WS related.
For example, i doesn't understand why
Code:
<wsdl:message name="echoRequest">
<wsdl:part name="echoString" type="xsd:string" />
</wsdl:message>
isn't possible. Instead i have to write
Code:
<wsdl:message name="echoRequest">
<wsdl:part name="echoString" element="tns:echoRequest" />
</wsdl:message>
and
<element name="echoRequest">
<complexType>
<sequence>
<element name="echoRequestInput" type="string"/>
</sequence>
</complexType>
</element>
Cheers,
Ingo