Hi Ashish, I think there are many ways to send these params, here are two of them: 1st. Set a global (for your domain not for your webapp and server) cookie to identify your user or whatever -> guarantees in normal cases your security. Create in a common database for your apps a key-value pair with your needed data and send the key as a normal request-param (e.g. Servlet?commonkey=XYZ5542) 2nd. Set a global cookie and store your data in a string value. If needed encrypt them.
Regards Frank >>>>>>>>>>>>>>>>>> Urspr�ngliche Nachricht <<<<<<<<<<<<<<<<<< Am 8/28/02, 7:54:52 PM, schrieb Ashish Kulkarni <[EMAIL PROTECTED]> zum Thema Send parameters from one web application to other: > Hi, > i have 2 web applications runnung on tomcat,say A and > B at some point i have to call a jsp B from A, and to > to send some parameters, one approcah is that i can > have an URL appended with the parameters > like http://localhost:8080/B/test.jsp?name=a > but i want to hide it from the user, or say if i have > to send a object from one web application to other. > how can i do it > Ashish > __________________________________________________ > Do You Yahoo!? > Yahoo! Finance - Get real-time stock quotes > http://finance.yahoo.com > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
