Hello:
I have an RTC executable I am converting to an ISAPI dll.
I attempted to follow the instructions.
I started by creating a new DLL with a /TIME provider in a single data module with an rtcIsapiServer.
This DLL works correctly.
I am using this working ISAPI DLL example as a base for converting my existing EXE to a DLL.
I replaced the rtcIsapiServer with a rtcDataServerLink and linked all my rtcDataProviders to it.
I created a new data module and added a rtcIsapiServer.
I added an OnCreate event in the new datamodule that says:
dmProviders.RtcDataServerLink1.Server := RtcIsapiServer1;
I copied this to my web server and accessed the DLL using: ...test.dll/time
This is what is shown in the browser:
Internal Server Error
Exception: Response not sent! Need to send complete response from ISAPI.
What is wrong?
Thanks, Sidney