Hi and thanks for making this module available for Drupal - it's a great addition.

Please see the attached patch which:

  • fixes 1 path error - $wsdl is set to http://localhost/testing/services/soap?wsdl should be http://localhost/services/soap?wsdl (e.g., "/testing/" does not belong in the url)
  • resolves a conflict for people that have the nusoap library installed AND also have --enable-soap set in their php installation.
    $client = new soapclient($wsdl,true); was changed to $client = new nusoap_client($wsdl,true);
  • includes a couple things which improves documentation for the file/soap_server in general
CommentFileSizeAuthor
soap_server_test.patch1.11 KBcalebgilbert

Comments

calebgilbert’s picture

gah. deleted a bunch of comments here related to getting the node.load statements in the test file to work, but figured out that it's just the access setting for the node_service.module that needs to be set for anonymous user so that things can work.