Hi, all... I'm using Apache HTTP server and Jakarta Tomcat as a servlet engine.
Apache is running on port 8088 and the direct connection to Tomcat is closed. The problem is that when some action in jsp has been operated and the jsp has called the "response.sendRedirect()" method to move into the view jsp, the target jsp cannot be found. I guess that the reason is resonse.sendRedirect() method would make ONLY a URL of tomcat server. In this case, I shoud use the javascript and write the code like "document.location.hre=blah blah..." instead of "response.sendRedirect()", shouldn't I? Any suggestion will be welcome. Thanks in advance.