HTTP OLE Server

By | 2002-06-01

This code provides the basic framework for HTTP services. There is NO functionality built in to transfer files – that’s really not the point of this DLL. If you want to create an HTTP service (for remote function calls, database access, customized web server) you can use this DLL to do it.
What’s the differenece between this and ASP? Two main things:
1. You can program this server to run on any port you’d like, without disturbing “normal” web services (PWS, IIS, etc.)
2. (Win95/98 only) You can shut this down when you want to (can’t forcibly unload ASP’s under 95/98, so debugging DLL’s becomes quite a pain).

Original Author: Michael Tutty

Assumptions

All you need to know is:
1. Reference the DLL (or pull the source code into your project),
2. Create a class that has a WithEvents variable of type HTTPServer,
3. In the OnRequest event, write the code to respond to the requestor (via the HTTPRequest object)

Attachments

FileUploadedSize
CODE_UPLOAD2001.zip9/3/2020 3:45:00 PM22069
Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.