I would like to use sessions with websphere and jsp with url writing.
The problem is, when using response.EncodeUrl(), the url is like http://localhost:8080/servlet/base.ServletOuverture;$sessionid$KJ0AALQAAAAAACQRAECAAAA, and the Nokia emulator put and error message:"invalid variable syntax:sessionid$KJ0AALQAAAAAACQRAECAAAA"
Could somebody help me please ?
Thank you
Posted by Tristan de Kerautem, tristan_dekerautem@asi-informatique.fr
on May 24, 2000 at 12:52
Posted by mario gianota, mariogianota@SimultaneousMillions.com
on May 25, 2000 at 17:08
Hi Tristan,
The emulator is objecting to the $ character in the URL. The
$ character in WML is reserved for variable definition. To get
around it (though I doubt that this is possible with your setup)
the character must be escaped like so: $. This will force the bytecode interpreter to treat it as a normal character.