Possible Duplicate:
Cannot serialize issue in KSOAP in android
I am calling one web service in my application,in that i am setting the input for that SOAP request as follows:
PropertyInfo usrid =new PropertyInfo();
usrid.setName("LoginID");
usrid.setValue(userid);
usrid.setType(String.class);
authentication.addProperty(usrid);
PropertyInfo pass =new PropertyInfo();
pass.setName("Password");
pass.setValue(password);
pass.setType(String.class);
authentication.addProperty(pass);
request.addProperty("authentication", authentication);
PropertyInfo no =new PropertyInfo();
no.setName("No");
no.setValue("28448347");
no.setType(String.class);
request.addProperty("Str",no);
But i am receiving the error:
java.lang.RuntimeException: Cannot serialize:no