Does MySQL5.0.18 suport XA in Tomcat 5.5 ? I do a XA test in tomcat with only a 
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 mysqlXADataSource get from the InitialContext is null ?

 Is this why I can not configure the XADataSource in tomcat in the previous 
mail ?

 I have waste much time in this problem, please help.

 Thanks.






Wang Jun


        

        
                
___________________________________________________________ 
雅虎1G免费邮箱百分百防垃圾信 
http://cn.mail.yahoo.com/

Reply via email to