I'm currently running Tomcat 7 (will likely migrate to 8 or 9 in the
next year).  I tried working with Oracle on this with no success.

We have an Oracle Database connection defined within our web.xml (see
below).  We need to convert to using 2 Factor (certificate?) based
Authentication.

How do we convert from our embedded username password to 2FA

<context-param>
<param-name>type</param-name>
<param-value>SIMPLE</param-value>
</context-param>

<context-param>
<param-name>datasource</param-name>
<param-value> </param-value>
</context-param>

<context-param>
<param-name>driver</param-name>
<param-value>oracle.jdbc.OracleDriver</param-value>
</context-param>

<context-param>
<param-name>url</param-name>
<param-value>jdbc:oracle:thin:@//server:1521/SID</param-value>
</context-param>

<context-param>
<param-name>username</param-name>
<param-value>myuser</param-value>
</context-param>

<context-param>
<param-name>password</param-name>
<param-value>mypass</param-value>
</context-param>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to