I'm developing an android application that can connect to a web service but I can't start because the one who create the web service on server side gave me only this type of code using the php.
Here's the code:
try {
$client = new SoapClient("http://as2.abc.com/aerv/app/custom/comp/ec.wsdl",
array("location" => "http://as2.abc.com/aerv/app/custom/comp/ecsoap.php") );
} catch (Exception $e) {
echo "Caught exception: ", $e->getMessage(), "\n"; exit();
}
To be able to start in client side I need to know what is the namespace, url, soap action and method name in the given code. Please help me.