DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Oracle/Tomcat/CMAN

  1. #1
    Join Date
    May 2002
    Posts
    2,645

    Oracle/Tomcat/CMAN

    Has anyone successfully configured the web.xml file on Tomcat and have it use the format shown in the JDBC developer guide on page 18-19 (where the connection string is using a mini-tnsnames.ora address list)? This is what Oracle says to use for CMAN & firewall connections. What's shown below would be used as a local param.

    Was just this:
    jdbc-colon-oracle:thin:@host_name:1521:SID

    And is now supposed to be like this:

    jdbc-colon-oracle:thin:@(description=(address_list=
    (address=(protocol=tcp)(port=1610)(host=webHost))
    (address=(protocol=tcp)(port=1521)(host=oraHost)))
    (connect_data=(INSTANCE_NAME=orcl))
    (source_route=yes));

  2. #2
    Join Date
    Mar 2004
    Location
    IA USA
    Posts
    257

    Re: Oracle/Tomcat/CMAN

    Originally posted by stecal

    And is now supposed to be like this:

    jdbc-colon-oracle:thin:@(description=(address_list=
    (address=(protocol=tcp)(port=1610)(host=webHost))
    (address=(protocol=tcp)(port=1521)(host=oraHost)))
    (connect_data=(INSTANCE_NAME=orcl))
    (source_route=yes));
    I used to configure jdbc oci driver in tomcat,
    this worked.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width