session control via terminal services
I have an application running like a dream using JSP and server side session control. One paricular user has an environment where all PCs are linux based and running a terminal service from a Microsoft SBS server.
These PCs are unable to maintain session when connection to the site.
Has anywone hit this problem before, is the any setting in the Microsoft to help this?
Thanks for your help
I have checked that cookies are enabled. I can implement URL rewiting but I was hoping for a simple solution without needing to change the software. As all other users are not having a problem.
I am not skilled in ternminal services and was hoping there was some configuration that coulod be tweeked.
> Session will not going to store on the client side so
> don't check the client side cookie. Session will
> create in the server when the user first hits the
> page on the server not on the client.
The client needs to maintain state information. For more information use google.
YoGeea at 2007-7-14 17:36:18 >

> I have checked that cookies are enabled. I can
> implement URL rewiting but I was hoping for a simple
> solution without needing to change the software. As
> all other users are not having a problem.
Maintaining a session involves passing an identifier between the client and the server. The identifier can be maintained on the client as a cookie, or the web component can include the identifier in every URL that is returned to the client. So clearly for whatever reason this is not happening. You need to either fix your application so URL rewriting is supported or find out why cookies are not working properly for these clients.
> I am not skilled in ternminal services and was hoping
> there was some configuration that coulod be tweeked.
Try a Microsoft forum
YoGeea at 2007-7-14 17:36:18 >
