"hidden login"

Hi, please help me figure out how to achieve this

System A needs login, but I can use like this "http://a/index.jsp?user=a&pw=a" bypass the login page.

Now several A systems are running at same time, so I want to create B system to take care of login (but don't remove login from all the A systems)

What I did, after login B system, create URL connection to all A systems, like

http://A1/index.jsp?user=a&pw=a

http://A2/index.jsp?user=a&pw=a

and so on

I got all response code 200, but when I open http://A1/index.jsp, still ask me to login

Is it possible to do such "hidden login" thing, and it's better no to change A system code

Thanks

[712 byte] By [haoa] at [2007-11-26 15:32:06]
# 1
If both systems are running in the same application server you may be able to use Single Sign on. You'll need to consult your server documentation.
tolmanka at 2007-7-8 21:49:01 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
you can go for encoding of the userid and password along with time stamp;eg: http://A2/index.jsp?user=sdfkajsdgfg&pw=afasdfjghaskjdgh tm=ksdjjfgkjasso its secure as well as u can maintain session management!
vijayvignesha at 2007-7-8 21:49:01 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...