Remove some old scripts
[civicrm-core.git] / tools / bin / scripts / soapClient.php.txt
diff --git a/tools/bin/scripts/soapClient.php.txt b/tools/bin/scripts/soapClient.php.txt
deleted file mode 100644 (file)
index 34a8fb7..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-$client =& new SoapClient(null, array(
-                                      'location' => 'http://civicrm1.electricembers.net/~lobo/drupal/modules/civicrm/extern/soap.php',
-                                      'uri' => 'urn:civicrm', 'trace' => 1 )
-                          );
-
-$key = $client->authenticate( USER_NAME, USER_PASSWORD );
-$params = array('contact_id' => 101,
-                'return.display_name' => 1 );
-
-$result =& $client->get_contact( $key, $params );
-
-print_r($result);
-
-