Please HELP ME!!!!!!!!!
i want that me server (Java application server) work with Mysql. I create Connection pool and select there Datasource Classname:
org.gjt.mm.mysql.jdbc2.optional.MysqlDataSource
but when i ping i have this exception:
Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: Class name is wrong or classpath is not set for : org.gjt.mm.mysql.jdbc2.optional.MysqlDataSource
please say me what i can do that this exception will be removed!
senks
[518 byte] By [
Trollchika] at [2007-11-27 5:20:24]

# 1
Here is how I configured my application server 8.2 to make it work:
I located the file mysql-connector-java-5.0.4-bin.jar in the lib/ext directory of my domain, e.g. in: /path_to_SunAppServer8/domains/domain1/lib/ext (where "domain1" is the name of my default domain). Shutdown application server, start it again.
The jar is inside the zip file you can download at http://dev.mysql.com/downloads/connector/j/5.0.html.
In the admin, I chose javax.sql.Connectionpool datasource, the class name I used was com.mysql.jdbc.jdbc2.optional.MysqlDataSource (I had to write it down, nothing was already in the text field by default).
Provide name of database, user name, password and port (usually 3306). Then ping... and success!
Gomera at 2007-7-12 11:44:32 >
