I am using webMethods 10.5 version and I am not able to start the MWS.I have configured mysql community edition server when specifiying the database for MWS.The mws.db file in mws/server looks like this.
<?xml version="1.0" encoding="UTF-8"?><CONNECTION default="true" displayname="Default" id="1" name="default" type="mysql">
<SQLWORKERCLASS>com.webmethods.portal.service.sql.core.BaseSqlWorker</SQLWORKERCLASS>
<CONNPROVIDERCLASS>com.webmethods.portal.service.sql.core.provider.pool.PooledConnectionProvider</CONNPROVIDERCLASS>
<PARAMS>
<DRIVER>com.mysql.jdbc.Driver</DRIVER>
<URL>jdbc:wm:mysql//localhost:3306/WebMethods</URL>
<USER>User</USER>
<!-- Password could be specified in clear text, it will be automatically encrypted during MWS startup -->
<PASSWORD>Password</PASSWORD>
<CACHESTATEMENTS>false</CACHESTATEMENTS>
<TESTSQL>SELECT COUNT(*) FROM TBLTHING WHERE IDTHING = 1</TESTSQL>
<MAXCONNECTIONS>100</MAXCONNECTIONS>
<MINCONNECTIONS>0</MINCONNECTIONS>
<!-- Max amount of idle time (in seconds) of the objects pooled by this pool -->
<IDLETIMEOUT>60</IDLETIMEOUT>
<!-- Time (in seconds) between eviction runs -->
<CLEANUPPERIOD>10</CLEANUPPERIOD>
</PARAMS>
</CONNECTION>
Is it the problem of driver or configuration file.Do I need to do any extra configurations?Please help me I am stuck with this configuration for quite a while now