<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>ORACLE INTEGRATION</title>
  <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=2035296" />
  <subtitle>ORACLE INTEGRATION</subtitle>
  <id>http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=2035296</id>
  <updated>2013-06-19T23:15:37Z</updated>
  <dc:date>2013-06-19T23:15:37Z</dc:date>
  <entry>
    <title>RE: Re: New Message from Satendra Gupta in Customer Voice Portal (CVP) - CV</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=8944484" />
    <author>
      <name>Faisal Zaidi</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=8944484</id>
    <updated>2012-11-30T11:46:24Z</updated>
    <published>2012-11-30T11:46:24Z</published>
    <summary type="html">also could you provide a little more detail on where the connection needs to be specified in the server.xml file please?
should it be between the tags &lt;GlobalNamingResources&gt; ..to.. &lt;/GlobalNamingResources&gt; as is the case with SQL or does it need to go after &lt;Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true" xmlNamespaceAware="false" xmlValidation="false"&gt;?
And should it the connection i write be from &lt;Context path="/CVP"&gt;..to..&lt;/Context&gt; from your example below?</summary>
    <dc:creator>Faisal Zaidi</dc:creator>
    <dc:date>2012-11-30T11:46:24Z</dc:date>
  </entry>
  <entry>
    <title>RE: Re: New Message from Satendra Gupta in Customer Voice Portal (CVP) - CV</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=8943883" />
    <author>
      <name>Faisal Zaidi</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=8943883</id>
    <updated>2012-11-30T10:36:10Z</updated>
    <published>2012-11-30T10:36:10Z</published>
    <summary type="html">Hi Janine
 
I am trying to do exactly the same thing but am confused by the number of options for Oracle Jar files to use.
 
The Oracle DB version is 10.2.0.3 and we are on CVP v8.5.1 so would you know which .jar file we need to use? I believe the choice is between classes12.jar and ojdbc14.jar and think it should be ojdbc14.jar for JDK 1.4?
 
 
http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-10201-088211.html
 
Any help would be appreciated
 
Thanks
 
Faisal</summary>
    <dc:creator>Faisal Zaidi</dc:creator>
    <dc:date>2012-11-30T10:36:10Z</dc:date>
  </entry>
  <entry>
    <title>Re: New Message from Satendra Gupta in Customer Voice Portal (CVP) - CVP -</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=2035783" />
    <author>
      <name>Janine Graves</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=2035783</id>
    <updated>2010-03-12T20:29:58Z</updated>
    <published>2010-03-12T20:29:58Z</published>
    <summary type="html">1.To use the database element that comes with Studio, you need to modify 
the Tomcat/conf/server.xml file to provide a JNDI interface to the 
oracle server. I believe the configuration within the server.xml config 
file is something like this for Oracle:

   &lt;Engine defaultHost="localhost" name="Catalina"&gt;
     &lt;Realm  className="org.apache.catalina.realm.UserDatabaseRealm"/&gt;
     &lt;Host appBase="webapps" name="localhost"&gt;
       &lt;Context path="/CVP"&gt;
         &lt;Resource
           name="jdbc/jndiAliasToUseInStudio"
           type="javax.sql.DataSource"
           password="yourPassword"
           driverClassName="oracle.jdbc.driver.OracleDriver"
           maxIdle="2"
           maxWait="5000"
           username="yourUserName"
           
url="jdbc:oracle:thin:@10.1.78.20:1521:DataBaseInstanceWithinOracle"
           maxActive="4"/&gt;
       &lt;/Context&gt;
     &lt;/Host&gt;
   &lt;/Engine&gt;
 &lt;/Service&gt;
&lt;/Server&gt;


2. You then need to get the JDBC driver for Oracle and put it into 
C:/Cisco/CVP/VxmlServer/Tomcat/common/lib

3. Restart Cisco VXML Server service (Tomcat)

4. Within Studio use the database element. To do a select statement, 
choose Type:  single
enter the JNDI name from the server.xml file 'jndiAliasToUseInStudio'  
in the example above (omit the quotes, do NOT use the jdbc/ prefix in 
Studio)

5. Enter the command you want to execute 'select * from rxtable where 
rxnum={Data.Element.rxnum.value}'  (omit the quotes, do NOT end with 
semi-colon)

6. For the single select statement, vxml server will create element data 
with the names of the columns being returned. So if the rxtable had 
columns named 'price' and 'refills'  then you'd get element data named 
'PRICE' and 'REFILLS' as part of the element data for the DATABASE 
element. NOTE - Oracle always returns column names as UPPER CASE - so 
your variables will be named as UPPER CASE.


Cisco Developer Community Forums wrote:
&gt; Satendra Gupta has created a new message in the forum "CVP - All 
&gt; Versions":
&gt;
&gt; --------------------------------------------------------------
&gt; Hi I have an ORACLE 10g server, I need to connect it from CVp.
&gt; Â 
&gt; I know sqlServer n mySQL integration is available for CVP.
&gt; Â 
&gt; Pls tel how to integrate Oracle wd CVP
&gt; --
&gt; To respond to this post, please click the following link:
&gt;
&gt; &lt;http://developer.cisco.com/web/cvp/forums/-/message_boards/message/2035295&gt;
&gt;
&gt; or simply reply to this email.</summary>
    <dc:creator>Janine Graves</dc:creator>
    <dc:date>2010-03-12T20:29:58Z</dc:date>
  </entry>
  <entry>
    <title>ORACLE INTEGRATION</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=2035295" />
    <author>
      <name>Satendra Gupta</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=2035295</id>
    <updated>2010-03-12T16:26:33Z</updated>
    <published>2010-03-12T16:26:33Z</published>
    <summary type="html">Hi I have an ORACLE 10g server, I need to connect it from CVp.
 
I know sqlServer n mySQL integration is available for CVP.
 
Pls tel how to integrate Oracle wd CVP</summary>
    <dc:creator>Satendra Gupta</dc:creator>
    <dc:date>2010-03-12T16:26:33Z</dc:date>
  </entry>
</feed>

