我正在使用axis2 编写一个SOAP 服务客户端。我用 wsdl2java 生成了客户端代码,然后我尝试
Request req = new Request();
req.setParameter("XXX");
ServiceStub stub = new ServiceStub();
stub.remoteService(req);
在运行时,我得到一个AxisFault
:Content length must be specified
知道出了什么问题或如何指定内容长度吗?