"Pierre-Laurent Ribault" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > I'm in the process of developping a Web application using Tomcat as the > development testbed. However, I'd like to be able later to deploy the > application on another servlet engine with the same specs level. > I know that Tomcat is the reference implementation of the servlet/JSP > spec, but is there an easy way (i.e. without reading the whole spec) to > know what is part of the spec and what is implementation specific in > Tomcat? For example, among the server settings (datasource, realms, etc).
Datasource and Realm (at least in the configuration/implementation), are Tomcat-specific features. As a rule of thumb, anything that requires that you edit "server.xml" is a Tomcat-specific feature. If your web-app works without touching the default "server.xml", then there is a good chance that it will work in any 2.3 container. > > ――――――――――――――――――――――― > Pierre-Laurent Ribault > Fujitsu Info Software Technologies Ltd. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
