it is this possible guys...? Integrating ASP with JSP...!
Integrating ASP with JSP
Collapse
X
-
Same session vaiables is not possible, because it runs in different webservers, maybe even on different hosts from what you have mentioned.Originally posted by samidoI mean, say for instance ... using same session varables that can be used in the same asp and jsp, my problem is they don't use the same application/web server...! they runs differently
Sam Rabophala
But you can pass all needed variables between the 2 servers as URL-parameters in your inquiry.
Or you can synchronize the session variables in a different way. There are many: over pipes, database, temporary files and so on.
I can give you one way to synchronize right here which comes in my mind: over httpGet(). That means if an inquiry hits the Tomcat container I would issue an inquiry to the IIS over httpGet() to get the latest values of the needed parameters from IIS session and then update the own Tomcat session vaiables with it. Then serve the inquiry as usual and send the response back.Comment
-
On the other hand, i think this combination will end up looking like a dog's breakfast. Why do it?Comment
Comment