I have few problems with Web Services and KSoap library. I searched this topic before asking but couldn\'t find anything.
Here is the question : I have an url like
yes you can find it. Go here and click on method which parameters you want to see. in this example
GetISBNInformation is the method click on it and you will get SOAP_ACTION and parameters. everything you need to know to send request using KSOAP. Cheers.
this should help out (php):
$client = new SoapClient("http://my_exposed_url?wsdl");
var_dump($client->__getFunctions());
var_dump($client->__getTypes());