How to determine method names and parameters in wsdl web service

后端 未结 2 518
天命终不由人
天命终不由人 2020-12-23 22:09

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

相关标签:
2条回答
  • 2020-12-23 22:19

    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.

    0 讨论(0)
  • 2020-12-23 22:33

    this should help out (php):

    $client = new SoapClient("http://my_exposed_url?wsdl");
    var_dump($client->__getFunctions());    
    var_dump($client->__getTypes());
    
    0 讨论(0)
提交回复
热议问题