Search code examples
javasoapksoap2prefix

ksoap2 v prefixo to any other prefix


Hi i have a code for generating a simple request to a example soap server where i need to build a request like:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"  xmlns:ns="http://10.1.5.80:8080/">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:GETSERVERTIME/>
   </soapenv:Body>
</soapenv:Envelope>

but i get

<v:Envelope 
    xmlns:i="http://www.w3.org/1999/XMLSchema-instance" 
    xmlns:d="http://www.w3.org/1999/XMLSchema" 
    xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" 
    xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header />
    <v:Body>
        <n0:GETSERVERTIME xmlns:n0="http://localhost:8080/" />
    </v:Body>
</v:Envelope>

i Only need to change "v:" to "soapenv:"

my code:

/**
 * Created by Vinicius Gati on 30/12/14.
 *
 */
public class ServerSOAP {

    private static final String METHOD_NAME = "GETSERVERTIME";
    private static final String NAMESPACE = "http://localhost:8080/";
    private static final String SOAP_ACTION = "";
    private static final String URL = "http://10.1.5.80:8080/ws/SERVERTIME.apw?WSDL";

    public static String getServerTime() {
        String retorno = "";

        SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER10);
        envelope.implicitTypes = false;
        envelope.setAddAdornments(false);

        envelope.setOutputSoapObject(request);
        HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
        androidHttpTransport.debug = true;

        try {
            androidHttpTransport.call( NAMESPACE + METHOD_NAME, envelope );
            SoapObject response = (SoapObject) envelope.getResponse();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return retorno;
    }

}

but i'm crazy trying this, no success.


Solution

  • As You may see in: https://github.com/mosabua/ksoap2-android/blob/master/ksoap2-base/src/main/java/org/ksoap2/SoapEnvelope.java

    writing method defines prefixes as string constants (code copy from class SoapEnvelope, see provided link):

    public void write(XmlSerializer writer) throws IOException {
        writer.setPrefix("i", xsi);
        writer.setPrefix("d", xsd);
        writer.setPrefix("c", enc);
        writer.setPrefix("v", env);
        writer.startTag(env, "Envelope");
        writer.startTag(env, "Header");
        writeHeader(writer);
        writer.endTag(env, "Header");
        writer.startTag(env, "Body");
        writeBody(writer);
        writer.endTag(env, "Body");
        writer.endTag(env, "Envelope");
    }
    

    So, You may try to define own class, inheriting from SoapSerializationEnvelope and experiment with redefining this method to use "soapenv" prefix.

    BTW: if WS cant read prefix of any name, its a poor code on this service side. "soapenv" or "v" should be interpreted as identical in both xml's You included.

    Marcin