An ISAPI project to show frames
Posted
by Jorge Lodos Vigil
on November 20th, 1998
The ISAM generates a page that contains a FRAMESET tag with the SRC fields pointing to the ISAM itself with GetFrame commands (see the html source for the dinamically generated page).
The full source code for the ISAM is provided, you will have to compile it in order to get a working site. Before compiling you will have to change a constant in the code: the module location. This constant is found in the isam.cpp file. Once you have compiled the project with correct site location you will need to take the following steps to install:
- Create a directory under your http server root for the project
- Copy the isam.dll file to this directory
- Create a virtual directory in your http server to access the dll (remember to grant execute rights). The name of the directory must be the same you set in the project
Last updated: 10 June 1998

Comments
ISAPI database
Posted by Legacy on 02/12/2003 12:00amOriginally posted by: anjali
examples for isapi programming using database detail to store in database and retreiving data....
ReplyInvoking an ISAPI extension programmatically
Posted by Legacy on 04/17/2002 12:00amOriginally posted by: Edwin
I am having problem invoking my ISAPI extension programmatically.
my code is something like this:
static char formAction[] = "http://graphics:8081/tzTalk/tzTalk.dll";
static char hdrs[]
= "Content-Type: application/x-www-form-urlencoded"
static Accept[] = "Accept: */*"
hRequest = HttpOpenRequest( hConnect,
"GET", formAction, NULL,
NULL,
accept,
0,
1 );
HttpSendRequest( hRequest,
hdrs,
(DWORD)strlen(hdrs),
NULL,
0 );
In the above code the HTTP Server running on IIS 5.0 returns :
HTTP 404 - File not found
BUT when I use a brower having these htm code below, It successfully invoke my ISAPI extension...
<html>
<title>eJobs</title>
<h1>tzTalk ISAPI Extension</h1>
<body>
<hr>
<b><i>"Hello how are you today?"</i></b><p>
<p>
<hr>
<p>
<FORM action="/tzTalk/tzTalk.dll" method="get">
<P>
Enter Input Data: <INPUT NAME="input_value" VALUE="" >
<INPUT TYPE="SUBMIT" VALUE="Invoke"> <INPUT TYPE="RESET">
</FORM>
<hr>
</body>
</html>
ReplyCan you help me on this? How can I invoke my ISAPI extension pogrammatically? Your help is very much appreciated.