1
Axis2 WebService Client: The given SOAPAction does not match an operationとApache CXF - The given SOAPAction does not match an operationのような私の質問に関係する多くの検索を行いました。AxisFault:指定されたSOAPAction urn:anonOutInOpが操作と一致しません
私はOK、ここdatailだ、Webサービス技術に非常に新しいです:Launch Webservice Interface with CXF Framework, And We wrote client code with Axis2 Framework
、以下のように:
try {
RPCServiceClient client = new RPCServiceClient();
Options options = client.getOptions();
String address = "http://ip:port/yaoxie/service/orderInfoBean?wsdl";
EndpointReference epf = new EndpointReference(address);
options.setTo(epf);
QName qname = new QName("http://spring.orderInfo/", "debitOrder");
String par = "<orgs>test</orgs>";
System.out.println("start to call");
Object[] result = client.invokeBlocking(qname, new Object[] { par }, new Class[] { String.class });
System.out.println("finished");
System.out.println(result[0]);
} catch (AxisFault e) {
e.printStackTrace();
}
そしてここでは、WSDLの記述情報です:WSDL info
は、その後、私はこのエラーを得た:
org.apache.axis2.AxisFault: The given SOAPAction urn:anonOutInOp does not match an operation.
at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:435)
at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:371)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:417)
at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)
at com.triffic.Axis2Demo.Axis2DemoTest.testClient(Axis2DemoTest.java:49)
at com.triffic.Axis2Demo.Axis2DemoTest.main(Axis2DemoTest.java:82)
どうすればよいですか?何か助けてください。