Hi there, I have a general question about presenting type information in the WSDL documents. For RPC style services, this is obtained from the Java code via reflection. But how does this work for Message services (the services that take Element[] as arguments)?
When I obtain the WSDL for the "samples.message.MessageService" example, it only specifies an "anyType" which is not very helpful for a remote client: <wsdl:message name="echoElementsResponse"> <wsdl:part name="echoElementsReturn" type="xsd:anyType"/> </wsdl:message> How can I pass the XSD for the messages that the service expects / returns to the client? thanx, Peter