Maintaining session information between 2 asp.net calls programmatically?

Posted by Santhosh on Stack Overflow See other posts from Stack Overflow or by Santhosh
Published on 2010-03-17T17:44:08Z Indexed on 2010/03/17 17:51 UTC
Read the original article Hit count: 413

Filed under:
|
|

Hi,

I'm not sure if I'll be clear enough in my explaination to make you guys understand, but I'll try.

Here's my problem:

We have an external site which the users in our company connect to by giving their corresponding username and password. The external site is an ASP.NET website. We want to integrate this website into our intranet portal so that the users don't have to enter their UN/Pwd to login to the website. Since the target website has no provision for SSO, we are simulating the POST request to login.

So far so good.

We are now required to perform an action after the initial login is done, on an another page. We can simulate the corresponding POST request as well. But the problem is since we are not maintaining any session information in our initial POST request, it always redirects to the login screen!

Is there any way to maintain ASP.NET session information between multiple calls done programmatically? Can we create an ASP.NET session id cookie programmatically and then pass it along with our initial request?

Or this is not possible at all?

Any comments are appreciated.

Thanks for your help.

Regards.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about session-state