我有一个Web服务,我想访问ping方法。这个方法只需要一个字符串并返回一个字符串。
我想在Android设备上使用ksoap2库访问它。经过多天未能达到正确的结果后,我发现SoapUI我的请求必须如下:
// Generated with SoapUI
<v:Envelope xmlns:ns="http://shared.bimserver.org/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header />
<v:Body>
<ns:ping>
<in>test</in>
</ns:ping>
</v:Body>
</v:Envelope>
这是我的代码:
String namespace = "http://shared.bimserver.org/";
String method = "ping";
String url = "http://10.0.0.5:8082/soap?WSDL";
SoapObject request = new SoapObject(namespace, method);
request.addProperty("in", "test");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
这是我的代码生成的请求。
<v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header />
<v:Body>
<ping xmlns="http://shared.bimserver.org/">
<in i:type="d:string">test</in>
</ping>
</v:Body>
</v:Envelope>
我发现网络服务不喜欢第4行
<ping xmlns="http://shared.bimserver.org/">
它应该像使用soapUI生成的上述(工作)请求一样格式化。不知何故,Web服务不喜欢在ping标记中直接定义名称空间。 然而。通过我的代码,我得到了以下回复:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<soap:Fault>
<faultcode>soap:Client</faultcode>
<faultstring>Unmarshalling Error: unexpected element (uri:"http://shared.bimserver.org/", local:"in"). Expected elements are <{}in></faultstring>
</soap:Fault>
</soap:Body>
</soap:Envelope>
那么如何从ping标签到信封标签获取命名空间?