I have two Web applications deplooyed in two different web servers .
Now i am having a question here , i am contacting from one web application to another , Now please tell me , i guess that these two aplications have two different sessions created by each of their web server .
1.If two sessions were created , then what is the approipaite way of passing large data two and fro between these two applications .
Please suggest , thanks
Please correct me if i am wrong .
Save India From Corruption - Anna Hazare.
Nilesh Miskin
Ranch Hand
Joined: Jun 17, 2010
Posts: 44
posted
0
Why not use a database where one Web app can store the data & other can retrieve?
Also you can think about Web services if you are trying to implement a scalable producer-consumer kind of paradigm.
Nilesh Miskin
Lester Burnham
Rancher
Joined: Oct 14, 2008
Posts: 1337
posted
0
If you search for "web apps communication" or some such phrase through these forums you will find multiple previous discussion on this subject. Bottom line #1: There are many way for web apps to communicate. Bottom line #2: SearchFirst.
Monika Joshi
Greenhorn
Joined: Apr 19, 2010
Posts: 9
posted
0
Hi, You can use request.setAttribute("data", actual data object), i.e set the data in the request and the other app can then access it.
Minakshi Sood wrote:Hi, You can use request.setAttribute("data", actual data object), i.e set the data in the request and the other app can then access it.