Tutorials » Creating a Web Service using ActiveX Components

ASP Listener

The ASP listener page performs two functions.

  1. Initializes our SOAP Server object. (ActiveX Server Component)
  2. Pass the request (incoming SOAP message) to the server.

Code for ASP Listener Page SOAPListener.asp

<%

dim objSOAPServer

Set SOAPServer = Server.CreateObject("Math.Functions")
SOAPServer.Load Request, Response

%>

Previous Start Next
 
  1 2  3 4 5 6