Session sharing
-
Hi, I have an ASP.NET server application, which has both Forms and Web services in the same application. I need to share session information between the forms and the services. I noticed that the Forms have a different session id then the service functions, therefore I can not share info! Is there any way to share variables/objects information between Forms and Web service in the same application? (Preferably not cookies) Thanks, avivhal
-
Hi, I have an ASP.NET server application, which has both Forms and Web services in the same application. I need to share session information between the forms and the services. I noticed that the Forms have a different session id then the service functions, therefore I can not share info! Is there any way to share variables/objects information between Forms and Web service in the same application? (Preferably not cookies) Thanks, avivhal
You can do this using named pipes. Here is a codeproject article on the subject http://www.codeproject.com/csharp/DotNetNamedPipesPart1.asp[^] Torin Blair
'In the immortal words of Socrates - "I drank what?".'