communication between remote servlets
Posted
by Venkatesh
on Stack Overflow
See other posts from Stack Overflow
or by Venkatesh
Published on 2010-06-14T07:40:30Z
Indexed on
2010/06/14
7:42 UTC
Read the original article
Hit count: 237
httpservletresponse
I have two web applications say App1 and App2. I want to call a servlet which is in App2 from a servlet in App1. I'm using URLConnection for this. I'm able to pass parameters to the servlet in App2 also and I'm also able to receive response from the servlet as string. But I want to send java objects from the servlet in App2 and receive them in servlet of App1. How to achieve this?
© Stack Overflow or respective owner