how to get list of functions in webservices with nusoap methods?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mme807
    New Member
    • Jun 2010
    • 8

    how to get list of functions in webservices with nusoap methods?

    hi all.
    i have a web_service and i connect to it with nusoap .
    my ask: is there a method in nusoap that get me list of function in web_service and if there is how work?
    please help me
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    a collection of nuSOAP resources

    Comment

    • tutibordoloi
      New Member
      • Oct 2012
      • 1

      #3
      Printing your WSDL methods:

      require_once 'nusoap.php';

      $wsdl = 'WSDL_FILE_PATH ';

      $client = & new soap_client($ws dl,TRUE);

      //this method gets your dynamically created functions

      $proxy = $client->getProxyClassC ode();

      print_r($proxy) ;

      May be it will help, I think...

      Comment

      Working...