我的服务器是一个Drupal网站,其中包含服务模块和soap服务器。 Web服务允许用户登录并创建或检索新闻。
我已经使用SOAPUi测试了该服务,它运行正常。 wsdl由soap服务器生成,它将结构返回给客户端。
我已经使用axis来生成存根类。
我用它来创建一个客户端,但当我调用方法“serviceStub.user_soap_login(login);
”到我的webservice时,我收到了这个错误
org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxParsingException: Expected a text token, got START_ELEMENT.
at [row,col {unknown-source}]: [2,275]
at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430)
at soap_server.Soap_server_serviceStub.fromOM(Soap_server_serviceStub.java:5035)
at soap_server.Soap_server_serviceStub.user_soap_login(Soap_server_serviceStub.java:1027)
at soap_server.test.main(test.java:67)
Caused by: org.apache.axiom.om.impl.exception.OMStreamingException: com.ctc.wstx.exc.WstxParsingException: Expected a text token, got START_ELEMENT.
由于