summaryrefslogtreecommitdiff
path: root/test/soap/calc/server.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'test/soap/calc/server.cgi')
-rw-r--r--test/soap/calc/server.cgi13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/soap/calc/server.cgi b/test/soap/calc/server.cgi
deleted file mode 100644
index 1eb0d1d864..0000000000
--- a/test/soap/calc/server.cgi
+++ /dev/null
@@ -1,13 +0,0 @@
-require 'soap/rpc/cgistub'
-
-class CalcServer < SOAP::RPC::CGIStub
- def initialize(*arg)
- super
-
- require 'calc'
- servant = CalcService
- add_servant(servant, 'http://tempuri.org/calcService')
- end
-end
-
-status = CalcServer.new('CalcServer', nil).start