Patch to fix errors and improve documentation of test file
Caleb G - May 19, 2008 - 20:36
| Project: | SOAP Server |
| Version: | 5.x-1.x-dev |
| Component: | Documentation |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Jump to:
Description
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?wsdlshould behttp://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
| Attachment | Size |
|---|---|
| soap_server_test.patch | 1.11 KB |

#1
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.