vote up 1 vote down star

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

flag

which version of JBoss? – skaffman Nov 3 at 23:06

1 Answer

vote up 2 vote down check

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.

link|flag
since jboss 5 the server.xml has been under server/default/deploy/jbossweb.sar/ – joe p Nov 4 at 22:37
thanks, good to know the last version of jboss I used was 4.2.0 – Tendayi Mawushe Nov 4 at 22:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.