Code :
String response ;
try {
final String SOAP_ACTION = \"http://tempuri.org/myAction\";
as its wsHttpBinding WCF service Android
So I Have Solved this using Following :
String METHOD_NAME = "MyMethodName";
String NAMESPACE = "http://tempuri.org/";
String URL = "MyUr;";
String SOAP_ACTION = "http://tempuri.org/MySoapAction";
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo req = new PropertyInfo();
req.name = "xmlstring";
req.namespace = NAMESPACE;
req.type = String.class;
req.setValue("........ MY Data.......");// without these `tags