我正在尝试使用ksop2将XML请求发送到webservice 但这不是workig
我的网络服务请求格式是
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<UpdateVehicleViaObj xmlns="http://tempuri.org/">
<userHash>[string?]</userHash>
<vehicleObject>
<Colour xmlns="http://schemas.datacontract.org/2004/07/StockService">[string?]</Colour>
<Comments xmlns="http://schemas.datacontract.org/2004/07/StockService">[string?]</Comments>
<Condition xmlns="http://schemas.datacontract.org/2004/07/StockService">[string?]</Condition>
</vehicleObject>
</UpdateVehicleViaObj>
</Body>
</Envelope>
我正在使用ksoap2来创建像
这样的请求SoapObject request = new SoapObject("Namespace", "methodname");
request.addProperty(properyObject);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
//SOAP is implemented in dotNet true/false.
envelope.dotNet = true;
MarshalDouble md = new MarshalDouble();
//envelope.implicitTypes = true;
envelope.implicitTypes = true;
md.register(envelope);
//Set request data into envelope and send request using HttpTransport
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(mInObj.getUrl(), networkTimeOut);
androidHttpTransport.debug= true;
androidHttpTransport.call(SoapAction, envelope,headerPropertyArrayList);
和ksop2使得requst变得像这样
<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><UpdateVehicleViaObj xmlns="http://tempuri.org/" id="o0" c:root="1"><userHash>B5B2FDF87E848946</userHash><vehicleObject><Colour>red</Colour><
<Comments >red</Comments ><<Condition >red</Condition ><</vehicleObject></UpdateVehicleViaObj></v:Body></v:Envelope>
请帮助..
答案 0 :(得分:2)
查看ksoap2的文档
你可以创建实现marshable接口的类,并在该类中添加其他属性
答案 1 :(得分:1)
也许有点晚了,但是我只是通过实现KvmSerializable类解决了它,在该类内部,CDATA字符串被声明为SoapObject。然后,我用SoapObject.setInnerText
设置CDATA SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
SoapObject fieldWithCdata = new SoapObject(NAMESPACE, "fieldWithCData");
fieldWithCdata.setInnerText(cDatraString);
CustomClass customClass = new customClass(string1, string2, string3, fieldWithCdata);
PropertyInfo pi = new PropertyInfo();
pi.setNamespace(NAMESPACE);
pi.setName("customClass");
pi.setValue(customClass);
request.addProperty(pi);
和CustomClass
public class CustomClass implements KvmSerializable{
private String string1;
private String string2;
private String string3;
private SoapObject fieldWithCdata;
...
public void setProperty(int index, Object value) {
switch (index)
{
case INDEX_STRING1: //0
this.string1 = value.toString();
break;
case INDEX_STRING2: //1
this.string2 = value.toString();
break;
case INDEX_STRING3: //2
this.string3 = value.toString();
break;
case INDEX_FIELDWITHCDATA://3
this.fieldWithCdata = (SoapObject) value;
break;
}
与
public void getPropertyInfo(int index, Hashtable properties, PropertyInfo info) {
switch(index){
case INDEX_STRING1:
info.name = "string1";
info.type = PropertyInfo.STRING_CLASS;
break;
case INDEX_STRING2:
info.name = "string2";
info.type = PropertyInfo.STRING_CLASS;
break;
case INDEX_STRING3:
info.name = "string3";
info.type = PropertyInfo.STRING_CLASS;
break;
case INDEX_FIELDWITHCDATA:
info.name = "fieldWithCdata";
info.type = PropertyInfo.OBJECT_TYPE;
break;
default:
break;
}
}