Re: Changing the URL

2002-04-09 Thread Shrivastava, Rashmi
- From: Ramu, Ganesh (MED) [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 11:48 PM To: [EMAIL PROTECTED] Subject: Re: Changing the URL you may want to follow the controller model for your site. I think that might solve the problem. Ganesh R -Original Message- From

Re: Changing the URL

2002-04-08 Thread Ramu, Ganesh (MED)
you may want to follow the controller model for your site. I think that might solve the problem. Ganesh R -Original Message- From: Shrivastava, Rashmi [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 1:47 AM To: [EMAIL PROTECTED] Subject: Changing the URL Hi, We are trying

Changing the URL

2002-04-03 Thread Shrivastava, Rashmi
Hi, We are trying to achieve Single Sign On from our application to all the external resources for eg. Report Server . This means that when a user has authenticated in our application, he has a menu item on very page for 'Reports' , when the user clicks on it servlet running in our applictaion s

Re: Changing the URL in the Response

2000-10-21 Thread help java
hi, >From my opinion redirection will work fine. But if u use through session it will be same .So there is no use to do it through session so go to first one option. --- Geeta Ramani <[EMAIL PROTECTED]> wrote: > Hi Shawn: > > Here's a round-about way of achieving this: > > In doGet of test

Re: Changing the URL in the Response

2000-10-20 Thread Geeta Ramani
Hi Shawn: Here's a round-about way of achieving this: In doGet of test servlet, if req.getParameter("user") is nonnull, then set a session var called "user" with value "me", then do a sendRedirect to test itself. else do your processing with session var "user". (The redirection will res

Changing the URL in the Response

2000-10-20 Thread Shawn Sohl
Is it possible to change the URL from a Servlet. For example, if I call a servlet from a web page, lets say "www.test.com/servlet/test?user=me" Now servlet "test" does some processing and writes HTML back to the client. At this point my URL is still ""www.test.com/servlet/test?user=me"..