Sharing state variables between web applications

  • Thread starter Thread starter W Akthar
  • Start date Start date
W

W Akthar

Hi,

I need to pass session state variables across different
web applications. Firstly is this possible and secondly
can someone show me how please??
 
First, it is possible, and second, how many ways can you think of to send a
message from one application to another? Here are a few:

POST Request
GET Request
Windows Messaging Services
Web Services
Remoting
SMTP
FTP
Telnet
HTTP
etc...

Anyway, I hope you get the idea.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
 
Thanks Kevin,

Do you know of any examples, tutorials on this on the web?
I am completely new to web proogramming and asp.net so
any help would be much appreciated!!!

Cheers
 
Hi there,

See my post on 9/16/2004 I asked this very question. It turns out in my
case I could not share state across apps, so what I did was I built an
encrypted token system that passed a token around from one application to
the next whenever the user wanted to go. I then created a "welcome" or
entrance page for each app and on this page I decrypt the token and set the
session variables for the application in question. This way each app
handles its own session data and state.

HTH Lerp :)
 
Do you know of any examples, tutorials on this on the web?
On this? Don't you mean "on these?" I did list quite a few, and mentioned
that there are others.

About all I can do is point you to the freely-downloadable .Net SDK, which
explains quite a lot and has samples of doing much of it:

http://www.microsoft.com/downloads/...A6-3647-4070-9F41-A333C6B9181D&displaylang=en

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
 

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

Back
Top