I have send this mail to another mail list, but have no reply yet. I have wasted much time in this problem, please help.
Does MySQL5.0.18 suport XA in Tomcat 5.5 ? I do a XA test in tomcat with only one jsp file and necessary jars. The jsp is as: --------------------------------------------- <% Context ctx = new InitialContext(); com.mysql.jdbc.jdbc2.optional.MysqlXADataSource xads = new com.mysql.jdbc.jdbc2.optional.MysqlXADataSource(); xads.setServerName("localhost"); xads.setDatabaseName("test"); xads.setPortNumber(3306); XAConnection xcon = xads.getXAConnection("root","password"); Connection con = xcon.getConnection(); System.out.println("I get the correct xads and the con=" + con); System.out.println("Bind xads to InitialContext"); ctx.bind("myXADB", xads); MysqlXADataSource mysqlXADataSource = (MysqlXADataSource)ctx.lookup("myXADB"); System.out.println("Get the null MysqlXADataSource from ctx xads=" + mysqlXADataSource ); %> --------------------------------------------- Why I can only get a null mysqlXADataSource from the InitialContext ? Is this why I can not configure the XADataSource in tomcat ? Thanks. Wang Jun ____________________________________________________ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]