That is an old format configuration - probably 3.0.x. Use the configuration examples from \docs\examples\jca.
You'll want the mysql-ds.xml file and copy that into your deployment directory. It should be modified for your database login details. It will look something like this: <?xml version="1.0" encoding="UTF-8"?> | | <!-- ===================================================================== --> | <!-- --> | <!-- JBoss Server Configuration --> | <!-- --> | <!-- ===================================================================== --> | | <!-- $Id: mysql-ds.xml,v 1.1 2002/07/22 22:57:24 d_jencks Exp $ --> | <!-- ==================================================================== --> | <!-- Datasource config for MySQL using 2.0.11 driver --> | <!-- ==================================================================== --> | | | <datasources> | <local-tx-datasource> | <jndi-name>MySqlDS</jndi-name> | <connection-url>jdbc:mysql://dell:3306/jbossdb</connection-url> | <driver-class>org.gjt.mm.mysql.Driver</driver-class> | <user-name>x</user-name> | <password>y</password> | </local-tx-datasource> | | </datasources> | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830251#3830251 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830251 ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
