summaryrefslogtreecommitdiffstats
path: root/perl/soapclient.pl
diff options
context:
space:
mode:
Diffstat (limited to 'perl/soapclient.pl')
-rwxr-xr-xperl/soapclient.pl17
1 files changed, 0 insertions, 17 deletions
diff --git a/perl/soapclient.pl b/perl/soapclient.pl
deleted file mode 100755
index 76c766c..0000000
--- a/perl/soapclient.pl
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl -w
-#
-# This is for testing only; the thought is to add content handlers
-# to http.c to deal with 1) REST (default), 2) XML/XMLRPC,
-# 3) SOAP http data input
-#
-# Do not expect this to do anything right now
-
-use SOAP::Lite;
-
-print SOAP::Lite
- -> uri('http://localhost:1234/astmanproxy')
- -> proxy('http://localhost:1234/')
- -> astman('Action: Ping')
- -> result . "\n";
-
-exit(0);