Hi,
The configuration looks OK. You have used pparam just in the mail? Why exactly?
> Did I miss any binding concerning the DataSource definition?????
Maybe!!!!! ;-)
Could you try if you can open the connection using JNDI in another
way? The only way I know is to write a small code snippet, could be in
a JSP page:
InitialContext ic = new InitialContext();
DataSource dataSource = (DataSource) ic.lookup("java:jdbc/MySQLDB");
System.out.println("@@@Connection: " +
dataSource.getConnection() + " @@@");
Or something similar. If you get "null", then there is something wrong.
> Is it a matter related to the "weird JackRabbit JNDI client"??
I wouldn't say weird, but when I have used JNDI with JBoss (a long
time ago), configuration was difficult, and for some reason 'new
InitialContext()' was not working (I don't remember why).
> Can I set the mysql DB as XA-datasource? Could it be a solution to this issue?
I don't think so.
Regards,
Thomas