I'm trying to make a new Connection POOL in GlassFish, but when I test in "Ping" it has the following error:
Configuredproperties:
Can anyone help?
You do not need all these settings.
Create a JDBC Connection pool in the glassfish with the following configs:
datasource-classname: com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource res-type=javax.sql.ConnectionPoolDataSource
Then click aditional properties and place these properties
> name="User" value="NameUSER"
> name="Password" value="yourpass"
> name="serverName" value="localhost"
> name="databaseName" value="databasename"
This should work!