Tagged Questions

1
vote
4answers
95 views

What is the cause and how to fix 503 errors with this in Apache error_log: “Broken pipe: ajp_ilink_send(): send failed”

I'm having intermittent problems with a servlet running on JBoss, with Apache forwarding it all requests via mod_proxy_ajp.so. Sometimes, for REST requests, I get 503 errors from …
1
vote
2answers
29 views

Is AJP secure enough?

We need to host a java richfaces/hibernate app in our hosting service. As a requirement of our security department we cannot make any connection from that application to our intern …
0
votes
1answer
237 views

ProxyPass, ProxyReverse vs AJP

I currently have a Tomcat + apache http server setting to serve my Java servlet: ProxyPass /myservice http://localhost:8080/myservice ProxyPassRerverse /myservice http://localhost: …
1
vote
4answers
158 views

Apache is incorrectly converting jsp pages to “text/plain”

I've got a fairly normal setup in which Apache proxies requests to a servlet running inside Tomcat over the AJP protocol. We've run this setup on Apache 2.0.46/Tomcat 5.0.28 for …
2
votes
2answers
692 views

Apache + Tomcat: Using mod_proxy instead of AJP

Is there any way I connect Apache to Tomcat using an HTTP proxy such that Tomcat gets the correct incoming host name rather than localhost? I'm using this directive in apache: Pro …
3
votes
10answers
801 views

Apache/Tomcat error - wrong pages being delivered

This error has been driving me nuts. We have a server running Apache and Tomcat, serving multiple different sites. Normally the server runs fine, but sometimes an error happens whe …
1
vote
3answers
582 views

Using ProxyPass for pages but not images

As a result of horrible, horrible errors, we've changed how we connect Apache to Tomcat. We were using mod_jk: JkMount /path ajp13 Now we're using mod_proxy_ajp: ProxyPass /pat …
2
votes
3answers
818 views

Speed up images in Tomcat 6

In tomcat 6 i have a servlet running openbluedragon, everything compiles and servers up quik, with the exception of images, they really lag significantly. Any suggestions optimiza …
0
votes
1answer
123 views

WebSphere Portal v.5.1 and AJP?

Hello, is there a way to configure WebSphere Portal to accept AJP connections? E.g. Tomcat/JBoss and Oracle have a specific AJP port. I can't find it in WebSphere, and I'm getti …
0
votes
3answers
401 views

How do I connect my tomcat app to apache 2 so the paths aren’t lame?

I've got a tomcat instance with several apps running on it... I want the root of my new domain to go to one of these apps (context path of blah).. so I have the following set up: …
1
vote
2answers
500 views

Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache…

So am I crazy for considering doing a beta/production release on Glassfish V3 Prelude? Since all of my content is dynamic, I'm not even thinking of bothering to set up apache in fr …
3
votes
2answers
194 views

Is there an implementation of AJP protocole in Java ?

From Apache, you can use the "mod_jk" module to send http requests to Tomcat using the "AJP" protocole, which is far more efficient that http itself. I want to do the same, but fr …