我试图用wsdl2java.bat的生成存根,我WSDL由两个绑定。 我看到wsdl2bat在第一绑定操作创建界面,但不产生在秒绑定操作什么。 wsdl2java.bat的-uri的http:// ... -o客户-d ADB -s -u。
例如,代码应该是这样的
try {
//Create the stub by passing the AXIS_HOME and target EPR.
//We pass null to the AXIS_HOME and hence the stub will use the current directory as the AXIS_HOME
Axis2SampleDocLitPortTypeStub stub= new Axis2SampleDocLitPortTypeStub(null,
"http://localhost:8080/axis2/services/Axis2SampleStub");
//Create the request document to be sent.
EchoString reqDoc= EchoString.Factory.newInstance();
reqDoc.setEchoString("Echo this");
//invokes the Web service.
EchoStringReturn resDoc=stub.echoString(reqDoc);
System.out.println(resDoc.getEchoStringReturn());
} catch (Exception e) {
e.printStackTrace();
}
这里的问题是,我确实看到存根resDoc实例的方法getEchoStringReturn。