Valhalla Legends Archive

Programming => Web Development => Topic started by: UserLoser. on January 16, 2004, 03:48 PM

Title: ISAPI in Apache (Win32)
Post by: UserLoser. on January 16, 2004, 03:48 PM
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?
Title: Re:ISAPI in Apache (Win32)
Post by: 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?
Title: Re:ISAPI in Apache (Win32)
Post by: UserLoser. on January 16, 2004, 05:23 PM
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
Title: Re:ISAPI in Apache (Win32)
Post by: UserLoser. on January 16, 2004, 06:32 PM
All fixed and working!! ;D
Title: Re:ISAPI in Apache (Win32)
Post by: 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!
Title: Re:ISAPI in Apache (Win32)
Post by: Thing on January 17, 2004, 12:11 PM
You would have to rename those something.asp pages to something.htm then it will work just fine.
Title: Re:ISAPI in Apache (Win32)
Post by: 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
Title: Re:ISAPI in Apache (Win32)
Post by: UserLoser. on January 17, 2004, 03:06 PM
Now to get ASP working..
Title: Re:ISAPI in Apache (Win32)
Post by: 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?
Title: Re:ISAPI in Apache (Win32)
Post by: 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
Title: Re:ISAPI in Apache (Win32)
Post by: 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.
Title: Re:ISAPI in Apache (Win32)
Post by: UserLoser. on January 18, 2004, 04:56 PM
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?
Title: Re:ISAPI in Apache (Win32)
Post by: 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?
Title: Re:ISAPI in Apache (Win32)
Post by: Adron on January 25, 2004, 03:21 AM
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 (http://www.onlamp.com/pub/ct/38) 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)