Strange, it is easy to make it works. I used Hibernate and all i did was this:
In cocoon.xconf: <datasources> <jdbc logger="core.datasources.[datasourcename]" name="[datasourcename]"> <pool-controller max="10" min="5" timeout="30000"/> <dburl>jdbc:mysql://localhost:3306/[schema]</dburl> <user>[user]</user> <password>[pass]</password> </jdbc> </datasources> and the web.xml just under other "load-class": <init-param> <param-name>load-class</param-name> <param-value>com.mysql.jdbc.Driver</param-value> </init-param> And some other explicit from hibernate ... Keep sure you have the mysql driver at web-inf/lib and nothing more ... Do you get any other exception when starting cocoon ? --- Matthew Monkan <[EMAIL PROTECTED]> escribió: > > 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] > > ______________________________________________ Enviado desde Correo Yahoo! La bandeja de entrada más inteligente. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
