0

Androidでksoapを使用する方法を理解しようとしています。この ksoap リクエストを実行しました:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:urn="urn:namespace">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:"method name">
        <urn:mode>"value"</urn:mode>
      </urn:method name>
   </soapenv:Body>
</soapenv:Envelope>

AndroidHttpClient 経由の HttpPost のエンティティ部分。私はksoapで同様のことを試みます:

 SoapObject root = new SoapObject(NAMESPACE, "method name");
    PropertyInfo pr = new PropertyInfo();
    mode.setName("mode");
    mode.setValue("value");
    root.addProperty(pr);

    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
        envelope.setOutputSoapObject(root/*request*/);

    Log.d(TAG, envelope.toString());

    HttpTransportSE transport = new HttpTransportSE(url);
    try {
        transport.call(NAMESPACE.concat("/").concat("method name"), envelope);
        Object obj = (Entity) envelope.getResponse();

、しかし、私には例外があります

SoapFault - faultcode: 'SOAP-ENV:Server' faultstring: 'Processing Failure' faultactor: 'null' detail: org.kxml2.kdom.Node@44f7cab0

仕組みを理解するために、この簡単なリクエストの例を教えてください。

4

2 に答える 2

2

ソリューション:

     SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
    envelope.implicitTypes = true;

    SoapObject root = new SoapObject(NAMESPACE, "method name");
    PropertyInfo mode = new PropertyInfo();
    mode.setNamespace(NAMESPACE);
    mode.setName("mode");
    mode.setValue("value");
    mode.setType(String.class);
    root.addProperty (mode);
   //root.addProperty("mode", "value");
    envelope.setOutputSoapObject(root/*request*/);

    Log.d(TAG, envelope.toString());

    HttpTransportSE transport = new HttpTransportSE(url);
    transport.debug = true;
    try {
        transport.call(NAMESPACE.concat("/").concat("Method of server"), envelope);
        Log.d(Qube.TAG, transport.requestDump);
        Log.d(Qube.TAG, transport.responseDump);

*xml の型を避けたい場合は、順序が重要です

于 2012-08-17T09:47:07.087 に答える