Tagged Questions
1
vote
0answers
450 views
Double forwarded ServletRequest using RequestDispatcher.forward() malforms URL and causes 404
My Java web app uses two servlets to control form processing and navigation, /AppControl and /ViewControl.
AppControl processes form submissions, then forwards the request to ViewControl, which ...
1
vote
1answer
44 views
Make locally deployed module join the process on integration environment easily
Our application has different modules deployed under many tomcats ondifferent physical machines. And we have an Apache proxy (mod_proxy) which forwards the client request to associated machine base on ...
0
votes
1answer
291 views
Will request.getDispatcher(“/newurl”).forward() work when using apache connected to tomcat via ajp?
I was trying to change the behaviour of a 3rd party app I'm working with by writing a servlet filter to forward a request to a particular URL based on certain conditions.
I initially tried with ...
0
votes
2answers
2k views
Combination of Apache, Tomcat, port 80, 8080 and other stuff
I have a Centos5 with running httpd, mysql and tomcat6. All fine. My goal is to achieve the following
www.domain.com >>> forwards/proxies to www.domain.com:8080/myapplication (served by tomcat)
...
1
vote
1answer
883 views
How to handle request on the page that was previously forwarded by servlet?
I have a JSP page that has 2 forms running on Tomcat 6. One is register form, Second is login form.
(please pay attention to context path, it's going to kill me later)
(regis_and_login.jsp)
...
0
votes
1answer
678 views
Apache forward everything to Tomcat except webmail
I have my Apache HTTP server set up to forward all requests to Tomcat, i.e. proxy_ajp.conf looks like:
ProxyPass / ajp://localhost:8009/
where Tomcat is listening on port 8009. This works find ...
