public void yenikayit(String username,String password)
{
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo UserInfo = new PropertyInfo();
UserInfo.setName("username");
UserInfo.setValue(username);
PropertyInfo PaswordInfo = new PropertyInfo();
UserInfo.setName("password");
UserInfo.setValue(password);
request.addProperty(PaswordInfo);
request.addProperty(UserInfo);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE httpTransportSE = new HttpTransportSE(URL);
try {
httpTransportSE.call(SOAP_ACTION, envelope);
SoapPrimitive soapPrimitive = (SoapPrimitive) envelope.getResponse();
yenikayıtResult = soapPrimitive.toString();
//
Log.e("yenikayıtResult=", yenikayıtResult);
}
catch (Exception e)
{Log.i("HATA", e.getMessage()); }
}
SoapPrimitive soapPrimitive = (SoapPrimitive) envelope.getResponse(); programım buraya catch e düşüyor fare imlecini üzerine götürdüğümde su mesajı veriyor
org.ksoap2.serialization.SoapPrimitive
Note: This element neither has attached source nor attached Javadoc and hence no Javadoc could be found.