Servlet Do Post() help

R

Rose Girl

Hi!

Please guys i need some help on this.

Is there a way to redirect from a servlets doPost() to another
servlets doPost() method. i know to redirect to the doGet using a url
like this.

response.sendRedirect("/EcBugManager/servlet/bugmanager.bugmanager.gui.
BugsheetPage?type="+bugsheettype+"&page="+page);

My problem is i am passing some parameters, and i dont want to show
these parameters in the explorer url. If there is a way to send those
parameters as hidden values like from a html form page, that will
solve my problem.

Or is there any other way.

- I need to have the explore bars, so getting rid of it is not a
solution.


thanks for your time
Rose Girl
 
B

bubba

Rose Girl said:
Hi!

Please guys i need some help on this.

Is there a way to redirect from a servlets doPost() to another
servlets doPost() method. i know to redirect to the doGet using a url
like this.

response.sendRedirect("/EcBugManager/servlet/bugmanager.bugmanager.gui.
BugsheetPage?type="+bugsheettype+"&page="+page);

My problem is i am passing some parameters, and i dont want to show
these parameters in the explorer url. If there is a way to send those
parameters as hidden values like from a html form page, that will
solve my problem.

Or is there any other way.

- I need to have the explore bars, so getting rid of it is not a
solution.


thanks for your time
Rose Girl

Have a look at javax.servlet.ServletRequest.RequestDispatcher

Its forward(path) method seems to be what you're after. It performs an
internal redirect instead of the client-side redirect you're currently
doing. You can access the dispatcher using request.getRequestDispatcher() or
getServletContext().getRequestDispatcher()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top