File: soap_perl.asp

package info (click to toggle)
libsoap-lite-perl 0.712-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,740 kB
  • ctags: 831
  • sloc: perl: 10,860; xml: 90; makefile: 23; cs: 16
file content (14 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<%@Language=PerlScript%>
<%
  # -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --

  # SOAP server. requires SOAP.Lite COM object (regsvr32 Lite.dll)
  # Path to Perl modules can be specified as '/PATH/TO/MODULES'

  $Response->{ContentType} = "text/xml";
  $Response->Write($Server->CreateObject("SOAP.Lite")
    -> server("SOAP::Server")
    -> dispatch_to("/Your/Path/To/Deployed/Modules")
    -> handle($Request->BinaryRead($Request->{TotalBytes}))
  );
%>