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

[416 byte] By [robmenniea] at [2007-10-3 0:41:59]
# 1
Have you checked they have Cookies enabled? Does your application support URL rewriting?
YoGeea at 2007-7-14 17:36:18 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
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.
vinu@sun.sdna at 2007-7-14 17:36:18 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

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.

robmenniea at 2007-7-14 17:36:18 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4

> 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 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5

> 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 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...