How do you launch browser from a servlet
800359Sep 25 2008 — edited Sep 28 2008I have an interesting issue here. I send data to a servlet and the servlet recieves and processes the data (confirmed through breakpoints) but I want to display the data in a JSP or directly thru the servlet using html tags.
However I can forward or redirect the data from the servlet to my jsp code but this still doesn't launch a browser.
A little more detail... I am not sending information from a JSP to the servlet. The servlet is listening on a port for input, so the servlet is being invoked directly when the data comes in. In the current state my servlet sends the results in a session object to a JSP which gets the results but can't display them since it doesn't launch browser.
Does anybody know how to display my calculated results from the servlet in a browser?