-
Posted to
IIS.NET Site Feedback
by
ptr727
on
04-09-2008, 10:49 PM
Working :)
-
Posted to
IIS.NET Site Feedback
by
ptr727
on
04-09-2008, 12:08 AM
Still 404 for me?
-
Posted to
IIS7 - Extensibility
by
ptr727
on
03-31-2008, 4:52 PM
Ah, excellent, thank you.
-
Posted to
IIS7 - Extensibility
by
ptr727
on
03-31-2008, 4:12 PM
I want my native module HTTP handler to only be invoked when certain web resources are accessed, either by path or by extension.
On Vista Ultimate x64, I use the inetmgr GUI to configure handler mappings, I set my module path to "*.foo", expecting that my HTTP module would only be invoked if the path matched.
But any ...
-
Posted to
IIS7 - Extensibility
by
ptr727
on
03-28-2008, 3:58 PM
Anil, yes, you are right, it happens to work.
Yet you are assuming everybody is using Microsoft Visual C++, __thiscall is a Microsoft specific extension.
If I were to compile my code with the Intel C++ compiler, which is completely reasonable, the resulting binary would fail.
By default Intel does not use __thiscall, and since you ...
-
Posted to
IIS.NET Site Feedback
by
ptr727
on
03-27-2008, 7:09 PM
Clicking the documentation link on this page:
http://www.iis.net/downloads/default.aspx?tabid=34&g=6&i=1301
Takes you to this 404 page:
http://www.iis.net/err404.htm?aspxerrorpath=/articles/view.aspx/Extending-IIS7/Building-Native-Modules/Develop-a-Native-C-C---Module-for-IIS7
-
Posted to
IIS7 - Extensibility
by
ptr727
on
03-27-2008, 6:33 PM
Anil, thank you for the clarification on RegisterModule() and error handling.
Regarding the cleanup argument, you can't have it both ways, do it for me or expect me to do it, and not do it the same way, but enough of cleanup (in)consistency ;)
In C++ __cdecl is the default calling convention, and in later versions ...
-
Posted to
IIS7 - Extensibility
by
ptr727
on
03-27-2008, 3:55 PM
AnilR, thank you for the reply.
a) I can understand why you would not want to allow session objects to be hanging around, but this would only happen if coders mess up. This still does not explain the lack of consistency in managing the lifetime of my objects, e.g. CHttpModule::Dispose() calling "delete this" vs. ...
-
Posted to
IIS7 - Extensibility
by
ptr727
on
03-27-2008, 1:23 AM
I had some not so nice things to say about the IIS 7 C++ object model in my newsgroup post, and David Wang pointed me to this forum:
http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.inetserver.iis&cat=en_US_02ceb021-bb43-476d-8f8f-6c00a363ccf5&lang=en&cr=US
I am still of the opinion that ...