session data lost

  • Thread starter Thread starter luke
  • Start date Start date
L

luke

Hi
I got the problem of lost session data when it operates in external network
(via internet), but it has not problem within the internal network.

Any helps will be appreciated.

Thanks,

Luke
 
I interpret what you say as meaning that when your application is accessed
from the internet, session data is not stored; but when it is accessed over
the internal LAN, session data is stored OK.

I'm also assuming that the same Web server is being used in both scenarios,
and that you are maintaining your sessions by using cookies.

If these assumptions are correct, perhaps the external client does not have
cookies enabled? Can you check that?



Peter
 
Hi Peter,

It is
a.. InProc - session kept as live objects in web server (aspnet_wp.exe). Use
"cookieless" configuration in web.config to "munge" the sessionId onto the
URL

thanks,

Luke
 
Haven't used cookieless sessions myself.

In order to see if the problem is in the passing of the session id back to
the Web server, can you try changing to use cookies and see if the problem
goes away? At least that will point us at the actual problem (or eliminate
one variable from the mix).


Peter
 
Back
Top