1. ISAPI is a DLL running in the context of IIS. IIS creates a new thread
for each request, so you must write the app as a multi threading
application. If you use the BDE, this means you have to start a new session
for each request. If there is common data for all requests, or common
objects, you’ll have to synchronize access to those items (e.g. with
critical sections).