• Welcome to Valhalla Legends Archive.
 

ISAPI in Apache (Win32)

Started by UserLoser., January 16, 2004, 03:48 PM

Previous topic - Next topic

UserLoser.

How do I do it?  I've tried everything, I keep getting
Quote
Forbidden
You don't have permission to access /isapi/MSNMessenger.dll on this server.


--------------------------------------------------------------------------------

Apache/2.0.48 (Win32) Server at www.userloser.net Port 80

From what I can find... I've added
AddType application/octet-stream .dll
AddHandler isapi-isa .dll to httpd.conf

Any suggestions/comments on how I can properly get it to work?

Spht

QuoteThe anonymous web access account will need read and execute permissions to the ISAPI
DLL itself.

Did you do that?

UserLoser.

Quote from: Spht on January 16, 2004, 05:20 PM
QuoteThe anonymous web access account will need read and execute permissions to the ISAPI
DLL itself.

Did you do that?

Probably not, will try

UserLoser.


Adron

Ah, so ISAPI in Apache works fine? That means we could switch from IIS to Apache at vl.com!

Thing

You would have to rename those something.asp pages to something.htm then it will work just fine.
That sucking sound you hear is my bandwidth.

UserLoser.

Quote from: Adron on January 17, 2004, 11:49 AM
Ah, so ISAPI in Apache works fine? That means we could switch from IIS to Apache at vl.com!

Except ISAPI filters don't work

UserLoser.


Adron

Quote from: UserLoser. on January 17, 2004, 03:02 PM
Quote from: Adron on January 17, 2004, 11:49 AM
Ah, so ISAPI in Apache works fine? That means we could switch from IIS to Apache at vl.com!

Except ISAPI filters don't work

Then what works? ISAPI applications only?

UserLoser.

Quote from: Adron on January 18, 2004, 06:31 AM
Quote from: UserLoser. on January 17, 2004, 03:02 PM
Quote from: Adron on January 17, 2004, 11:49 AM
Ah, so ISAPI in Apache works fine? That means we could switch from IIS to Apache at vl.com!

Except ISAPI filters don't work

Then what works? ISAPI applications only?

I believe so

Skywing

Quote from: UserLoser. on January 18, 2004, 03:47 PM
Quote from: Adron on January 18, 2004, 06:31 AM
Quote from: UserLoser. on January 17, 2004, 03:02 PM
Quote from: Adron on January 17, 2004, 11:49 AM
Ah, so ISAPI in Apache works fine? That means we could switch from IIS to Apache at vl.com!

Except ISAPI filters don't work

Then what works? ISAPI applications only?

I believe so
Does it support asynchronous read/write? BinaryChatISAPI requires that.

UserLoser.

#11
Quote from: Skywing on January 18, 2004, 04:52 PM
Quote from: UserLoser. on January 18, 2004, 03:47 PM
Quote from: Adron on January 18, 2004, 06:31 AM
Quote from: UserLoser. on January 17, 2004, 03:02 PM
Quote from: Adron on January 17, 2004, 11:49 AM
Ah, so ISAPI in Apache works fine? That means we could switch from IIS to Apache at vl.com!

Except ISAPI filters don't work

Then what works? ISAPI applications only?

I believe so
Does it support asynchronous read/write? BinaryChatISAPI requires that.

Not sure

Edit: Can't find any information on it, do you have a sample ISAPI dll that I can use to test?

Grok

Why would Apache support ISAPI?  Would you need a CGI driver to emulate the ISAPI?  What programming models are supported natively by Apache other than CGI?

Adron

Quote from: Grok on January 18, 2004, 05:40 PM
Why would Apache support ISAPI?  Would you need a CGI driver to emulate the ISAPI?  What programming models are supported natively by Apache other than CGI?

Writing modules is supported. The context is very similar to IIS's ISAPI. There should be lots of info on the web,  this link might provide some info.

When did IIS start supporting ISAPI? Perhaps Apache supports much more powerful customization than IIS? (since it's open source obviously yes, but I mean customization done just by writing modules for it)