Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wildfly or jboss 7.1 standalone.xml dtd

I understand that this question is not very specific to programming but I am trying to find the description of each tag in standalone.xml in wildfly or jboss 7.1 so that I can learn about each tag and it will be helpful for configuration.

Where can I find a document that describes tags used in standalone.xml? jBoss or Wildfly administration guide does not give all the information.

like image 433
Prasad Kharkar Avatar asked Jan 08 '15 09:01

Prasad Kharkar


1 Answers

James R. Perkins's right. Under $JBOSS_HOME/docs/schema there are several schemas, which describe the tags of standalone.xml. The table on https://developer.jboss.org/wiki/JBossDTDs denotes which 'DTD or Schema' applies to what xml. For example, if You are curious about the 'logging' subsystem of standalone.xml, than look at $JBOSS_HOME/docs/schema/jboss-as-logging_1_1.xsd file.

like image 106
SzGyD Avatar answered Oct 03 '22 18:10

SzGyD