Hi!,
I'm having a little trouble finding the server.xml and application.xml files mentioned in any of the official Java specs out there. I've looked in the J2EE spec, the EJB spec, and the Servlet spec, but no luck. I did find some information on application.xml in the J2EE spec regarding packaging apps, but I'd love to find more information on the full set of tags that can be used inside of that descriptor.
Thanks!
DTS
-
What Specification Defines server.xml and application.xml??? (3 messages)
- Posted by: David Simcik
- Posted on: August 11 2004 12:14 EDT
Threaded Messages (3)
- What Specification Defines server.xml and application.xml??? by ashish verma on August 11 2004 20:01 EDT
- server.xml and application.xml by Allen Chee on August 27 2004 05:54 EDT
- Since Server.xml is not a part of the J2EE Spec... by David Simcik on August 30 2004 14:39 EDT
-
What Specification Defines server.xml and application.xml???[ Go to top ]
- Posted by: ashish verma
- Posted on: August 11 2004 20:01 EDT
- in response to David Simcik
http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd
DTD's are defined and given in ejb-spec in the appendix section..
So have look at the spec and gat the latest dts for relavent ejb's u are using.
Vishal.
http://www.tusc.com.au -
server.xml and application.xml[ Go to top ]
- Posted by: Allen Chee
- Posted on: August 27 2004 05:54 EDT
- in response to David Simcik
server.xml is not a standard, it's used in Tomcat but not in the J2EE specs. application.xml is in the J2EE specs however. Here's the DTD:
http://java.sun.com/dtd/application_1_3.dtd
This is for J2EE 1.3.
Hope this helps. -
Since Server.xml is not a part of the J2EE Spec...[ Go to top ]
- Posted by: David Simcik
- Posted on: August 30 2004 14:39 EDT
- in response to Allen Chee
Thanks Allen!!! I read through most of the J2EE 1.3 Specification and never saw server.xml mentioned, but it's tough to say when something like that: a.) should be there, but is missing, b.) shouldn't be there, but is related in some way to the documentation in hand and could be referenced in the doc's.
Maybe I'll put together a web page one day soon mapping J2EE containers to their config files. Somebody might find that useful for sorting through things!
Cheers,
DTS