Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > b3ff9d3c9422e3118b7a64b8aa395b87 > files > 25

perl-SOAP-Lite-1.270.0-1.mga7.noarch.rpm

<%
  ' -- 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' or as 'drive:/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)) _
  )
%>