summaryrefslogtreecommitdiffstats
path: root/old/admin/soap/getlastraid.php
diff options
context:
space:
mode:
Diffstat (limited to 'old/admin/soap/getlastraid.php')
-rw-r--r--old/admin/soap/getlastraid.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/old/admin/soap/getlastraid.php b/old/admin/soap/getlastraid.php
deleted file mode 100644
index b4d9737..0000000
--- a/old/admin/soap/getlastraid.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-/******************************
- * EQdkp
- * Copyright 2002-2005
- * Licensed under the GNU GPL. See COPYING for full terms.
- * ------------------
- * getlastraid.php
- * begin: Tue April 19 2005
- *
- * $Id: getlastraid.php 46 2007-06-19 07:29:11Z tsigo $
- *
- ******************************/
-
-define('EQDKP_INC', true);
-$eqdkp_root_path = './../../';
-include_once($eqdkp_root_path . 'common.php');
-
-
-// Create the client instance
-$client = new soapclient($ns . 'admin/soap/dkpsoap.php');
-
-// Call the SOAP method
-$output = $client->call('GetLastRaid', array('user' => $soap_user, 'password' => $soap_password));
-
-// Display the result
-print_r($output);
-
-echo '<h2>Request</h2>';
-echo '<pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
-echo '<h2>Response</h2>';
-echo '<pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
-?>