This did not help either.:-( When I load http://localhost:8080/cocoon/abc/tickets.xsp all I get is a page with the text "Trouble tickets for". This makes sense for now, but when I eventually get it to access my database it should read in appropriate values and display a table below the text.
I've attached the tickets.xsp document. http://www.nabble.com/file/p17343815/tickets.xsp tickets.xsp I don't know if it will help, but I attached a cocoon.log file after starting Tomcat and accessing the tickets.xsp page. I got it from: C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\cocoon\WEB-INF\logs http://www.nabble.com/file/p17343815/cocoon.log cocoon.log -Matt Manuel Mata wrote: > > I think you can't have two classes in the <init-param> > This is yours without comments. > > <init-param> > <param-name>load-class</param-name> > <param-value> > org.hsqldb.jdbcDriver > com.mysql.jdbc.Driver > </param-value> > </init-param> > > Try to delete the org.hsqldb.jdbcDriver from the > <init-param> if you are not going to use it, or make > another <init-param> with the mysql driver like this > > <init-param> > <param-name>load-class</param-name> > <param-value> > com.mysql.jdbc.Driver > </param-value> > </init-param> > > <init-param> > <param-name>load-class</param-name> > <param-value> > org.hsqldb.jdbcDriver > </param-value> > </init-param> > > Anyway, do you get any exception starting cocoon about > this ? > > -- View this message in context: http://www.nabble.com/Cocoon-MySQL-tp17341170p17343815.html Sent from the Cocoon - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
