Skip to content

Instantly share code, notes, and snippets.

@lgfa29
Created August 24, 2012 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgfa29/3456479 to your computer and use it in GitHub Desktop.
Save lgfa29/3456479 to your computer and use it in GitHub Desktop.
SoapObject req = new SoapObject(NAMESPACE, METHOD_NAME);
req.addProperty("email", ...);
SoapSerializationEnvelope env = new SoapSerializationEnvelope(SoapEnvelope.VER11);
env.setOutputSoapObject(req);
HttpTransportSE ht = new HttpTransportSE(URL);
ht.debug = true;
ht.call(SOAP_ACTION, env);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment