简体   繁体   中英

connecting to webservice with kSOAP in android

I am trying to connect web service with kSOAP Library. code send 4 fields like username and password, name and family to the server but in server everything received null ! this is my code where is the problem? WebService.java

import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.PropertyInfo;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapPrimitive;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import android.util.Log;


public class WebService {
    private static String NAMESPACE = "xxxxxxxxxxxx";
    public final static String URL = "xxxxxxxxxxxx";

    private static String SOAP_ACTION = "xxxxxxxxxxxxxxx";
    private static final String METHOD = "Register";
    public static String invokeWS() {
        String resTxt = null;

        SoapObject request = new SoapObject(NAMESPACE, METHOD);

        request.addProperty("username","user");
        request.addProperty("password","pass");
        request.addProperty("name","MyName");
        request.addProperty("family","MyFamily");
        Log.v("", ""+request);
        SoapSerializationEnvelope envelope = 
                         new SoapSerializationEnvelope( SoapEnvelope.VER12);

        envelope.setOutputSoapObject(request);

        HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

        try {            
            androidHttpTransport.call(SOAP_ACTION+METHOD, envelope);
            SoapPrimitive response = (SoapPrimitive) envelope.getResponse();
            resTxt = response.toString();
        } catch (Exception e) {        
            e.printStackTrace();
            Log.e("",""+e);
            resTxt = "Error !!!!";
        } 
        return resTxt;
    }
}

and call invokeWS() in MainActivity.java

 AsyncCallWS task = new AsyncCallWS();
//Call execute 
task.execute();
private class AsyncCallWS extends AsyncTask<String, Void, Void> {
@Override
protected Void doInBackground(String... params) {
displayText = WebService.invokeWS();
return null;
}
@Override
protected void onPostExecute(Void result) {
//Set response
Log.v("", "Recive : "+displayText);
}
@Override
protected void onPreExecute() {  
}
@Override
protected void onProgressUpdate(Void... values) {
}
}

将此行添加到您的代码中:

envelope.dotNet=true

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM