Authentication, Redirection and session management with iPlanet/ASP.NET

S

Subrata

I looking for the most efficient solution for the followng scenario, for a
ASP.NET web application:
When the user types in the URL, he's presented with a login page from an
iPlanet server for authenticaiton.
After he's authienticated, the user should be taken to a ASP.NET website
(in IIS), where he can use the application.
Issues:
What is the most effecient way of passing user identification infor from the iPlanet to IIS?
How you manage session, after the user is authenticated by the iPlanet
server and is using the ASP.NET pages in the IIS?
The user, potentially, should not be using the ASP.NET app, witout
being authenticated by the iPlanet first. What if he tries to use the URL
for the ASP.NET app directly?

Any help/pointers to the issues are highly appreciated.
Thanks.
 
H

Hans Kesting

I looking for the most efficient solution for the followng scenario, for a
ASP.NET web application:

server and is using the ASP.NET pages in the IIS?
being authenticated by the iPlanet first. What if he tries to use the URL for
the ASP.NET app directly?

Any help/pointers to the issues are highly appreciated.
Thanks.

A suggestion:
1) after authentication on iPlanet, store the identity (and possibly a
date) in application-scope, under some newly generated guid.
2) redirect to an "entry page" on IIS, giving that guid as parameter
3) call the iPlanet server directly from code-behind, using that guid
to get the identity. It's an error if there is no identity under that
guid or if that identity is "too old".
4) when you receive an identity, store it in the session
5) if no identity is stored in the (IIS) session, redirect to iPlanet
to log in.

Hans Kesting
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top