Hi,
I have a situation like mentioned below:
I am building an app GWT + GAE for online hotel booking.
I make an ajax call to my server.
My server has to hit 3 web services running on different-different servers. Each of them takes few seconds to return the response.
If i hit them one-by-one, it takes a lot of time to gather all results, merge them and process ahead.
So i am planning to handle them by using threads as announced in GAE 1.7.2.
Is this a right decision or there anything else which i can do ?
If Yes, then how will session will come into picture here and what else do i need to do to handle session with thread ?
Thanks
Deepak