Which HTTP connector is the default in Tomcat 6 from JBoss EWS?

Solution Verified - Updated -

Environment

  • JBoss Enterprise Web Servier (EWS) 1.0.2

Issue

  • How can i verify which connector is currently being used. We currently deployed with EWS 1.0.2 and mod_proxy_http
  • Which connector is the default in JBoss EWS?

Resolution

If you go to the <Connector> definitions in server.xml, what does the "protocol" attribute contain? If it says Http11NioProtocol you are using the NIO connector, which is not the default. If it says Http11AprProtocol, you are using the APR connector.
If it says Http11Protocol then you are using the normal Java connector. The default of "HTTP/1.1" picks the APR connector when available.

This solution is part of Red Hat’s fast-track publication program, providing a huge library of solutions that Red Hat engineers have created while supporting our customers. To give you the knowledge you need the instant it becomes available, these articles may be presented in a raw and unedited form.

Comments