I am trying to call a create user .net web service from a server using ksoap. However when i run this set of codes, i would get a "07-13 07:49:30.355: WARN/System.err(352): org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope (position:START_TAG @1:6 in java.io.InputStreamReader@44f1cf90)" error that seems to be preventing me from sending my data over to the web service. Is there anyway to solve this error.
public class Registration extends Activity {
private static final String NAMESPACE = "http://FYPJWebService.com/";
private static final String URL = "http://172.20.129.137/WebService/WebService.asmx/";
private static final String CreateUser_SOAP_ACTION = "http://FYPJWebService.com/CreateUser";
private static final String METHOD_NAME = "CreateUser";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.register);
Button buttonstart = (Button)findViewById(R.id.register);
buttonstart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
EditText username = (EditText) findViewById(R.id.username);
String musername =username.getText().toString();
EditText password = (EditText)findViewById(R.id.password);
String mpassword = password.getText().toString();
EditText name = (EditText) findViewById(R.id.name);
String mname = name.getText().toString();
EditText nirc = (EditText) findViewById(R.id.nirc);
String mnirc = nirc.getText().toString();
EditText email = (EditText) findViewById(R.id.email);
String memail = email.getText().toString();
EditText phone = (EditText) findViewById(R.id.phone);
String mphone =phone.getText().toString();
RadioGroup gender = (RadioGroup) findViewById(R.id.gender);
String mgender = gender.getContext().toString();
EditText dob = (EditText) findViewById(R.id.dob);
String mdob = dob.getText().toString();
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo pi = new PropertyInfo();
pi.setName("Username"); // Same as parameter in web service
pi.setValue(musername); // Same as textbox
pi.setType(String.class);
request.addProperty(pi);
PropertyInfo pi2 = new PropertyInfo();
pi2.setName("Password");
pi2.setValue(mpassword);
pi2.setType(String.class);
request.addProperty(pi2);
PropertyInfo pi3 = new PropertyInfo();
pi3.setName("Name");
pi3.setValue(mname);
pi3.setType(String.class);
request.addProperty(pi3);
PropertyInfo pi4 = new PropertyInfo();
pi4.setName("NRIC");
pi4.setValue(mnirc);
pi4.setType(String.class);
request.addProperty(pi4);
PropertyInfo pi5 = new PropertyInfo();
pi5.setName("Email");
pi5.setValue(memail);
pi5.setType(String.class);
request.addProperty(pi5);
PropertyInfo pi6 = new PropertyInfo();
pi6.setName("Phone");
pi6.setValue(mphone);
pi6.setType(String.class);
request.addProperty(pi6);
PropertyInfo pi7 = new PropertyInfo();
pi7.setName("Gender");
pi7.setValue(mgender);
pi7.setType(String.class);
request.addProperty(pi7);
PropertyInfo pi8 = new PropertyInfo();
pi8.setName("DOB");
pi8.setValue(mdob);
pi8.setType(String.class);
request.addProperty(pi8);
SoapSerializationEnvelope envelope =
new SoapSerializationEnvelope(SoapEnvelope.VER12);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
try {
androidHttpTransport.call(CreateUser_SOAP_ACTION, envelope);
SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
//Object result = envelope.getResponse();
}
catch(Exception e)
{
e.printStackTrace();
}
Intent intent = new Intent(Registration.this, Bus.class);
startActivity(intent);
}
}); }
}
CreateUsermethod looks like? – Ladislav Mrnka Jul 13 '11 at 9:35