Cisco Cisco Customer Voice Portal 8.0(1) Release Notes

Page of 24
6
Release Notes for Cisco Customer Voice Portal, Release 3.0(0) Updated 6/24/05
CVP 3.0 Considerations
</parameter>
<parameter>
<name>driverClassName</name>
 <value>com.inet.tds.TdsDriver</value>
</parameter>
<parameter>
<name>url</name>
 <value>jdbc:inetdae7:YOUR_HOSTNAME_OR_IP:PORT_NUMBER?data
base=DATABASE_NAME</value>
</parameter>
</ResourceParams>
</Context>
In the above Context, an example url value would be, 
jdbc:inetdae7:10.86.130.93:1433?database=DB_name Where 1433 is the default port for MSSQL and 
DB_name is the name of the database that already exists in MSSQL.  Note that the database must exist 
for this connection to work.  CVP VXML Server will not create the database for you.
For MySQL the Context will take the form:
<Context path="/CVP" docBase="CVP" crossContext="true">
        
<Resource name="jdbc/LABEL_YOU_CHOOSE" auth="Container" type="javax.sql.Data-
Source"/>
<ResourceParams name="jdbc/SAME_LABEL_FROM_PREVIOUS_LINE">
 <parameter>
<name>username</name>
              
<value>YOUR_USERNAME</value>
</parameter>
 <parameter>
<name>password</name>
             <value>YOUR_PASSWORD</value>
 </parameter>
 <parameter>
<name>driverClassName</name>
             <value>com.mysql.jdbc.Driver</value>
</parameter>
 <parameter>
<name>url</name>
<value>jdbc:mysql:
 
//YOUR_HOSTNAME_OR_IP:PORT#/YOUR_DATABASE_NAME</value>
</parameter>
</ResourceParams>
</Context>
The default port number for MySQL is 3306. An example url for the above Context would be 
jdbc:mysql://localhost:3306/DB_name 
Note that the database must exist for this connection to work.  CVP VXML Server will not create the 
database for you.