RE: data-source configruation question

2005-04-15 Thread Scott Purcell
Finally, I got an error to show up. Here are the jars in the WEB-INF\lib commons-collections.jar mm.mysql-2.0.7-bin.jar commons-pool-1.2.jar commons-dbcp-1.2.1.jar and of course the struts jars. Any ideas? message description The server encountered an internal error () that prevented it from

Re: data-source configruation question

2005-04-15 Thread Rafael Taboada
Hi. u missed to call the data-source key u specified in ur struts-config.xml In ur struts-config.xml: U have: data-source type=org.apache.commons.dbcp.BasicDataSource It must be: data-source key=myDB type=org.apache.commons.dbcp.BasicDataSource In ur action class: U have: dataSource =

Re: data-source configruation question

2005-04-15 Thread Rafael Taboada
why don't use mysql-connector-java-3.1.7-bin??.. Download from www.mysql.com -- Rafael Taboada - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: data-source configruation question

2005-04-15 Thread Scott Purcell
To: Struts Users Mailing List Subject: Re: data-source configruation question Hi. u missed to call the data-source key u specified in ur struts-config.xml In ur struts-config.xml: U have: data-source type=org.apache.commons.dbcp.BasicDataSource It must be: data-source key=myDB type