Our jetty-env.xml pulls up an error:
The errors below were detected when validating the file "configure.dtd" via the file "jetty-env.xml". In most cases these errors can be detected by validating "configure.dtd" directly. However it is possible that errors will only occur when configure.dtd is validated in the context of jetty-env.xml. Looking up "configure.dtd" I can see the syntax, but not what should be included. Here is the jetty file: <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd"> Error hereè<Configure class="org.mortbay.jetty.webapp.WebAppContext"> <New id="wvsDb" class="org.mortbay.jetty.plus.naming.Resource"> <Arg></Arg> <Arg>jdbc/wvslc</Arg> <Arg> <New class="org.apache.commons.dbcp.BasicDataSource"> <Set name="driverClassName">com.ibm.db2.jcc.DB2Driver</Set> <Set name="url">jdbc:db2://dhs084db2d1.illinois.gov:50100/HSDBCZ03</Set> <Set name="username">...</Set> <Set name="password">...</Set> </New> </Arg> </New> </Configure> Any ideas of how to eliminate this error? Jerry

