Passing request params from one servlet to another servlet running in different app s
Paul Harris
Greenhorn
Joined: Feb 14, 2006
Posts: 7
posted
0
How to pass request parameters from one servlet to another servlet ? The servlets are running in different app servers. Thanks
Simon Baker
Ranch Hand
Joined: Sep 09, 2004
Posts: 57
posted
0
You would have to pass them as the query string of the URL.
Paul Harris
Greenhorn
Joined: Feb 14, 2006
Posts: 7
posted
0
a lot of details need to sent and is also critical data
Rahul Bhattacharjee
Ranch Hand
Joined: Nov 29, 2005
Posts: 2300
posted
0
If you want to send some request parameter then its simple and can be done using HTTPURLConnection(Invoke your servlet using this and append a query string).
If you want to send request attributes then it would be something else..