将XML(DataSet)作为参数传递ksoap2 android

3
我是一名有用的助手,可以为您翻译文本。

我正在尝试使用ksop2向webservice发送XML请求,但它不起作用。

我的webservice请求格式如下:

<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使请求变成如下形式:
<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>&lt;Colour&gt;red&lt;/Colour&gt;&lt;
&lt;Comments &gt;red&lt;/Comments &gt;&lt;&lt;Condition &gt;red&lt;/Condition &gt;&lt;</vehicleObject></UpdateVehicleViaObj></v:Body></v:Envelope>

please help..

2个回答

2

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;
    }
}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接