I saw some previous emails on the mailing list about getting Axis to
generate document bound wsdl for a deployed service (similar mail title),
but it does not seem to be generated. For example if I deploy a service like
the following
<service name="SamplesMsg" provider="java:MSG">
<parameter name="allowedMethods" value="*"/>
<parameter name="className" value="Test"/>
</service>
I get wsdl using a rpc binding. Is it wrong to expect the wsdl generated
from this service to use document binding? The sample Test class is very
simple:
import org.w3c.dom.Document;
public class Test {
public Document doSomething(Document doc) {
System.out.println("a test");
return null;
}
}
I also had a quick look at the Java2WSDL command line options but didn't
spot anything to help.
The version of Axis being used is beta2, and would appreciate any pointers
on how I can extract a document bound wsdl description if indeed it is
currently supported.
Regards,
Neil