Hi all, I'm using Java on the server side of my application connected by BlazeDS. For authentication purpose, I use Java servlet that stores the username and password to the http session and returns the session's ID. For example, when a user hits this url - http://localhost:8080/myapp/login?username=user&password=secret, the servlet stores the request parameter to the http session and return the session's ID value e.g 123.
Next thing I want to do is to tell my Flex application to use the existing session with ID 123, instead of creating a new one. In Java web app I can simply do this using url rewrite by appending jsessionid=123 to the request url. Is there anyway we can do this in Flex? Thanks in advance. -- Bustanil Arifin "Keep moving forward!"

