aspose file tools
The moose likes JSP and the fly likes how to post jsp request to servlets Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "how to post jsp request to servlets" Watch "how to post jsp request to servlets" New topic
Author

how to post jsp request to servlets

viral patel
Greenhorn

Joined: Feb 25, 2003
Posts: 16
Basically, i need to send my xml documents to servlets from jsp. How do i post jsp request to servlets. so then in servlets i can use..request.getparameter()..something like that..
Praful Thakare
Ranch Hand

Joined: Feb 10, 2001
Posts: 613
Hi,
C if this solves ur query.
<% RequestDispatcher rd=request.getRequestDispatcher("Name of Servlet");
rs.forward(request,response);
%>
regards
Praful


All desirable things in life are either illegal, banned, expensive or married to someone else !!!
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: how to post jsp request to servlets
 
Similar Threads
Servlet HTTP protocol
Passing the session variable from one HTML to JSP through Servlets?
Servlet of a JSP
JSP and Swing
How to get connection at each request?