I need to call a c# .net app from my java application that runs on JBOSS using tomcat 5.5. The call is from a HttpSession servlet. The c# .net application then calls an non session servlet. Between these calls i need to somehow store or send the session object so that when i receive control back from the c# application i should be able to move on with the original session.
I tried to pass the jsessionid in the url, retrived it and passed it along hoping the server would be able to attach the session but that didn't work.
When I received the jsessionid back from the c# app, i created a JSESSIONID cookie and sent that along. No help there too.
What do i do in this situation ?
In short how do i tell tomcat to use a particular session that is active at that point ?
Thanks
Narsi
I tried to pass the jsessionid in the url, retrived it and passed it along hoping the server would be able to attach the session but that didn't work.
When I received the jsessionid back from the c# app, i created a JSESSIONID cookie and sent that along. No help there too.
What do i do in this situation ?
In short how do i tell tomcat to use a particular session that is active at that point ?
Thanks
Narsi
Comment