2010-09-16 13 views

risposta

4

codice di esempio fornito ora si prova voi stessi :)

private final String SOAP_ACTION = "urn:abc#login"; 
     private final String METHOD_NAME = "UserLogin"; 
     private final String NAMESPACE = "urn:abcwsdl"; 
     private final String URL = "http://abc.com/service/server.php"; 

public void login() 
{ 
SoapObject userRequest=new SoapObject(NAMESPACE, METHOD_NAME); 
      userRequest.addProperty("email", email); // login-account 
      userRequest.addProperty("password", password); // login-password 

      SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); 
      request.addProperty("UserLogin", userRequest); // login-account 


      SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); 
      envelope.bodyOut = request; 


      HttpTransportAndroid androidHttpTransport = new HttpTransportAndroid(URL); 



      try { 




       Object result=envelope.getResult(); 

        res=new DalLogin(); 
       SoapObject resp=(SoapObject) result; 
       if(((SoapObject)result).getProperty("result").equals("error")) 
       { 

        res.setError_string("error"); 
        res.setResult(resp.getProperty("response").toString()); 

       }else 
       { 
       res.setError_string(null); 
       res.setUser_id(resp.getProperty("user_id").toString()); 
       res.setSession_id(resp.getProperty("session_id").toString()); 



       } 


      } catch (Exception aE) { 
       aE.printStackTrace(); 
      } 

} 
+0

Umar può u vi prego di inviarmi alcune indirizzo e-mail del tuo come ho bisogno del vostro aiuto in servizi web Android. Si prega di – Shah

+0

Grazie @UMAR ... C'è qualche documentazione completa su KSOAP2? –

+0

https://code.google.com/p/ksoap2-android/w/list – UMAR

Problemi correlati