--- soap_server_test.php	2008-02-04 21:58:40.000000000 -0800
+++ soap_server_test_mod.php	2008-05-19 13:21:30.000000000 -0700
@@ -1,12 +1,29 @@
 <?php
+
+/**
+ * @file
+ * The implementation of a SOAP Server for the Services module.
+ * 
+ * The soap_server listens on:
+ *   services/soap
+ * 
+ * The WSDL Interface is at:
+ *   services/soap?wsdl
+ */
+
   // Pull in the NuSOAP code
   // TODO Set the right path to nusoap.php
+  // If you're using this code inside of Drupal this should be formatted
+  // like the commented out example below instead
+  // require_once drupal_get_path('module', 'soap_server') . '/nusoap/lib/nusoap.php';
+
+  // only format like this if linking to script outside of Drupal - may need to adjust path
   require_once('nusoap/lib/nusoap.php');
   // Create the client instance
   // TODO Set the paht of wsdl
 
-  $wsdl = "http://localhost/testing/services/soap?wsdl";
-  $client = new soapclient($wsdl,true);
+  $wsdl = "http://localhost/services/soap?wsdl";
+  $client = new nusoap_client($wsdl,true);
   $client->debug_flag=true;
 //  $client->proxyhost = 'localhost';
 //  $client->proxyport = 8080;
