473,382 Members | 1,373 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

ISAPI in C++.net Book Recommendation Needed

I am a C# programmer with a little C++ experience from a few years ago. I
need to write some ISAPI filters and extensions to run on the latest version
of IIS on .net Server 2003. Can anyone recommend an excellent book that has
some decent samples to get an out of shape C++ programmer and ISAPI beginner
going? Thank you.
Nov 16 '05 #1
6 1748
If you are going to write an ASAPI filter, then you probably don't want
to use .NET (.NET doesn't allow static function exports). You would just
want to use C++. However, ASP.NET has a nice framework that allows you to
do much of what ISAPI offers you (through the IHttpHandler and
IHttpAsyncHandler interfaces).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"msnews.microsoft.com" <Ty***********************@welfare.com> wrote in
message news:Ob**************@TK2MSFTNGP10.phx.gbl...
I am a C# programmer with a little C++ experience from a few years ago. I
need to write some ISAPI filters and extensions to run on the latest version of IIS on .net Server 2003. Can anyone recommend an excellent book that has some decent samples to get an out of shape C++ programmer and ISAPI beginner going? Thank you.

Nov 16 '05 #2
I want to be able to intercept a web page request and depending on the the
user agent, determine the reponse that is going to be rendered to the
requestor. I do not think I can do this using httphandlers. Thanks.

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:#H**************@tk2msftngp13.phx.gbl...
If you are going to write an ASAPI filter, then you probably don't want to use .NET (.NET doesn't allow static function exports). You would just
want to use C++. However, ASP.NET has a nice framework that allows you to
do much of what ISAPI offers you (through the IHttpHandler and
IHttpAsyncHandler interfaces).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"msnews.microsoft.com" <Ty***********************@welfare.com> wrote in
message news:Ob**************@TK2MSFTNGP10.phx.gbl...
I am a C# programmer with a little C++ experience from a few years ago. I need to write some ISAPI filters and extensions to run on the latest

version
of IIS on .net Server 2003. Can anyone recommend an excellent book that

has
some decent samples to get an out of shape C++ programmer and ISAPI

beginner
going? Thank you.


Nov 16 '05 #3
You might want to take look in the MSDN documentation, searching for ATL
Server. ATL Server is a library included in Visual C++ .Net, providing
support for developing ISAPI extensions.

--
--
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Please do not send email directly to this alias. It is for newsgroup
purposes only.

thanks,
bogdan

"msnews.microsoft.com" <Ty***********************@welfare.com> wrote in
message news:Ob**************@TK2MSFTNGP10.phx.gbl...
I am a C# programmer with a little C++ experience from a few years ago. I
need to write some ISAPI filters and extensions to run on the latest version of IIS on .net Server 2003. Can anyone recommend an excellent book that has some decent samples to get an out of shape C++ programmer and ISAPI beginner going? Thank you.

Nov 16 '05 #4
Though you have to use c++, you'll still have access to the .net framework.
The following links should help get you started though.

http://www.genusa.com/isapi/isapisrc.html

http://msdn.microsoft.com/library/de...pi_filters.asp

http://support.zeus.com/doc/examples/isapi/cookie.html

http://www.codeproject.com/isapi/isapiredirector.asp

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:%2******************@tk2msftngp13.phx.gbl...
If you are going to write an ASAPI filter, then you probably don't want to use .NET (.NET doesn't allow static function exports). You would just
want to use C++. However, ASP.NET has a nice framework that allows you to
do much of what ISAPI offers you (through the IHttpHandler and
IHttpAsyncHandler interfaces).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"msnews.microsoft.com" <Ty***********************@welfare.com> wrote in
message news:Ob**************@TK2MSFTNGP10.phx.gbl...
I am a C# programmer with a little C++ experience from a few years ago. I need to write some ISAPI filters and extensions to run on the latest

version
of IIS on .net Server 2003. Can anyone recommend an excellent book that

has
some decent samples to get an out of shape C++ programmer and ISAPI

beginner
going? Thank you.


Nov 16 '05 #5
Thanks

"Hasani (remove nospam from address)" <hb********@n0sp4m.popstick.com> wrote
in message news:eM*************@TK2MSFTNGP09.phx.gbl...
Though you have to use c++, you'll still have access to the .net framework. The following links should help get you started though.

http://www.genusa.com/isapi/isapisrc.html

http://msdn.microsoft.com/library/de...pi_filters.asp
http://support.zeus.com/doc/examples/isapi/cookie.html

http://www.codeproject.com/isapi/isapiredirector.asp

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:%2******************@tk2msftngp13.phx.gbl...
If you are going to write an ASAPI filter, then you probably don't want
to use .NET (.NET doesn't allow static function exports). You would just
want to use C++. However, ASP.NET has a nice framework that allows you to do much of what ISAPI offers you (through the IHttpHandler and
IHttpAsyncHandler interfaces).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"msnews.microsoft.com" <Ty***********************@welfare.com> wrote in
message news:Ob**************@TK2MSFTNGP10.phx.gbl...
I am a C# programmer with a little C++ experience from a few years
ago. I need to write some ISAPI filters and extensions to run on the latest

version
of IIS on .net Server 2003. Can anyone recommend an excellent book

that has
some decent samples to get an out of shape C++ programmer and ISAPI

beginner
going? Thank you.



Nov 16 '05 #6
msnews.microsoft.com wrote:
I want to be able to intercept a web page request and depending on
the the user agent, determine the reponse that is going to be
rendered to the requestor. I do not think I can do this using
httphandlers. Thanks.


Huh? Any old ASP.NET Web Control does adaptive rendering.
Cheers,
--
Joerg Jooss
jo*********@gmx.net
Nov 16 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Bruce Dodds | last post by:
I will be doing an app for a nonprofit. It would be useful for them to have a good entry-level book on Access so that they don't have to pay someone to design all their queries and reports. I'm not...
16
by: Robert Zurer | last post by:
Can anyone suggest the best book or part of a book on this subject. I'm looking for an in-depth treatment with examples in C# TIA Robert Zurer robert@zurer.com
1
by: Jerry Hewett | last post by:
So far I've ordered two C#/.Net books off the internet, and they're both *very* sadly lacking when it comes to coverage of Visual Studio .Net. I don't care about the C# language / API. Piece of...
1
by: Greg | last post by:
Hi Hi, I'm about to make an isapi extension. Before I begin I would like to know if theres an equivalent int hte .net framework that works much the same way? best regards Greg.
8
by: msnews.microsoft.com | last post by:
I am a C# programmer with a little C++ experience from a few years ago. I need to write some ISAPI filters and extensions to run on the latest version of IIS on .net Server 2003. Can anyone...
6
by: ted | last post by:
Hi, I have been programming for about 5 years mainly on client apps that are standalone and n-tier. I have very little experience with web development. I need a recommendation on a book that...
4
by: Huy | last post by:
I am in need of a book recommendation to pick up C++ properly and elegantly. I program extensively within the Python programming language and have a decent grasp of OOP (possibly could be better)...
0
by: lallous | last post by:
Hello I come from C# util development and from PHP/MySQL background. The book should cover: - MSSQL 2005 features and its SQL specific commands - DB components in C# and all needed controls...
0
by: Erwin Moller | last post by:
Hi, I am one of those questionable people that started with Vista (Home Premium). Not because I think it is a ready/steady OS, but partly out of curiousity, and partly because I needed to work...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.