views:

206

answers:

1

I am running an application which was deployed on JBoss.

There is only documentation for Tomcat, none for JBoss.

I need to change some connector tag attributes to look like so:

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8443" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="100" debug="0" scheme="https" secure="true"
useURIValidationHack="false" disableUploadTimeout="true">
</Connector>

Where can I find the file equivalent to server.xml in JBoss?

Thanks

+2  A: 

The default jboss configuration (Jboss version 4.2.x) file setup is well described here: Server Configuration File Set JBoss uses Tomcat as web engine, this intended to be configured directly so it is deployed un-packed as a folder (server/default/deploy/jbossweb-tomcat50.sar) rather than a JAR file. You can configure this Tomcat deployment as you would any other.

Tendayi Mawushe
since jboss 5 the server.xml has been under server/default/deploy/jbossweb.sar/
joe p
thanks, good to know the last version of jboss I used was 4.2.0
Tendayi Mawushe