Connecting Tech Pros Worldwide Forums | Help | Site Map

ISAPI Filter and sessions

Aintzane
Guest
 
Posts: n/a
#1: Jul 22 '05
Hi!

Sorry if I'm asking silly things, but I'm new with ISAPI Filters.
That's what my filter does. When a user makes a request
the filter verifies if the user has already entered his password. If
it hasn't been entered, the user is redirected to the
login page, and after that it's returned to the previously requested
page. But to do all this I need to keep some
information about the session, and in ISAPI filter each HTTP request
is "a session". My question is, does Visual C++
provide with something to manage the session? Is there something
similar to the HttpSession class of Java?

Thanks in advance,

Aintzane Armentia

Thomas Matthews
Guest
 
Posts: n/a
#2: Jul 22 '05

re: ISAPI Filter and sessions


Aintzane wrote:[color=blue]
> Hi!
>
> Sorry if I'm asking silly things, but I'm new with ISAPI Filters.
> That's what my filter does. When a user makes a request
> the filter verifies if the user has already entered his password. If
> it hasn't been entered, the user is redirected to the
> login page, and after that it's returned to the previously requested
> page. But to do all this I need to keep some
> information about the session, and in ISAPI filter each HTTP request
> is "a session". My question is, does Visual C++
> provide with something to manage the session?[/color]
The best answer will come from the experts in a Microsoft
Visual C++ newsgroup.
[color=blue]
> Is there something
> similar to the HttpSession class of Java?[/color]
Sorry, but not in _standard_ C++. Microsoft Visual C++
newsgroup is down the hall around the corner.
Read the FAQ and Welcome text below to find a more
suitable newsgroup.

[color=blue]
>
> Thanks in advance,
>
> Aintzane Armentia[/color]


--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.comeaucomputing.com/learn/faq/
Other sites:
http://www.josuttis.com -- C++ STL Library book

Closed Thread