How to determine method names and parameters in wsdl web service

后端 未结 2 529
天命终不由人
天命终不由人 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:33

    this should help out (php):

    $client = new SoapClient("http://my_exposed_url?wsdl");
    var_dump($client->__getFunctions());    
    var_dump($client->__getTypes());
    

提交回复
热议问题