a php login page will generate a session id which i require to be passed to a jsp web server.
i also wish to use this session id on multiple web pages based on different platforms. how do i go ahead with it?
also which technology, if not php, will be best suited for the same ?
a php login page will generate a session id which i require to be
Share
You can’t really use the same session id in the context of different servers and technologies. If you want to achieve something like you are describing, you should look at Single sign on implementations as, for instance, CAS, which offers implementations for different platforms.
Furthermore, what you asked for sounds like a really dangerous idea. You should never use the session id alone to identify a user but rather rely on the mentioned technologies to achieve this.