Cisco Cisco Unified Customer Voice Portal 11.0(1)

Página de 24
5
Release Notes for Cisco Customer Voice Portal, Release 3.0(0) Updated 6/24/05
CVP 3.0 Considerations
  •
Go to the machine where CVP VXML Server is installed.
  •
In the directory, C:\Cisco\CVP\Tomcat 4.1\conf, open the file server.xml
  •
Search for <!-- Tomcat Root Context -->. Below the ROOT context (see example below) insert your 
Context for either MySQL or MSSQL. 
Note
This is just an example, the contexts are explained further later in this section.
You must restart Tomcat after making server.xml changes for them to take effect.
Example of Tomcat Context
<!-- Tomcat Root Context -->
        <!--
          <Context path="" docBase="ROOT" debug="0"/>
        -->
        <Context path="/CVP" docBase="CVP" crossContext="true">
<Resource name="jdbc/DB_name" auth="Container" type="javax.sql.DataSource"/>
<ResourceParams name="jdbc/DB_name">
 <parameter>
<name>username</name>
              <value>root</value>
</parameter>
<parameter>
<name>password</name>
 <value>isnqa</value>
</parameter>
<parameter>
<name>driverClassName</name>
 <value>com.mysql.jdbc.Driver</value>
</parameter>
 <parameter>
<name>url</name>
             <value>jdbc:mysql://localhost:3306/DB_name</value>
</parameter>
</ResourceParams>
</Context>
For MSSQL, the Context will take the form:
<Context path="/CVP" docBase="CVP" crossContext="true">
<Resource name="jdbc/LABEL_YOU_CHOOSE" auth="Container" type="javax.sql.DataSource"/>
<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>