at work, we have some web pages written in JSP and a few others written in PHP (we're in process of migrating them)
Right now we have user login sessions implemented in JSP (done by another team) and PHP (done by our team).
I'm not sure how JSP or PHP store their session information, but can they be shared between one another?
What we're trying to accomplish is that, whenever a user login (through a PHP page), we want to save the session information (userid, login time, etc) and use the same information when accessing JSP pages as well.
Is there a way to do that, or are they automatically compatible with each other?
Thanks.
Right now we have user login sessions implemented in JSP (done by another team) and PHP (done by our team).
I'm not sure how JSP or PHP store their session information, but can they be shared between one another?
What we're trying to accomplish is that, whenever a user login (through a PHP page), we want to save the session information (userid, login time, etc) and use the same information when accessing JSP pages as well.
Is there a way to do that, or are they automatically compatible with each other?
Thanks.