I want to display an HTML page from servlet depending upon request parameters received from another HTML page.What should I do?
vikinsa
Ranch Hand
Joined: Apr 18, 2001
Posts: 46
posted
0
Hi!, Just try this... resonse.sendRedirect("test.html"); Considerations: 1. response here is your response object of HttpServlet 2. if the web server you are using to display html requires a particular path them you'll have to provide that in addition to the file name. 3. The servlet's running port if not changed is by default 8080. Check at what port your web server is serving html. you'll have to provide that in the path too. Finally... Suppose the site is http://www.vikinsa.com Suppose the servlet is "BaseServlet" So the current running path will be http://www.vikinsa.com:8080/BaseServlet For HTMl it would be http://www.vikinsa.com/test.html If html lies in a folder ir would be http://www.vikinsa.com/HTMLS/test.html
response.sendRedirect("
Originally posted by Indira Shukla: I want to display an HTML page from servlet depending upon request parameters received from another HTML page.What should I do?
Vikinsa as much as I appreciate you unselfish help, your user name does not comply with the JavaRanch's naming policy. Pse change it you wish to continue posting in our forums. Thanks
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.