Spotfire® Server and Environment - Installation and Administration

Kerberos authentication for JDBC data sources

Configuring Kerberos authentication for JDBC data sources is similar to configuring Kerberos for the connection to the Spotfire database.

For more information, see Using Kerberos to log in to the Spotfire database.

This is an example of configuring a connection pool for Oracle databases:
<jdbc-type-settings>
 	<type-name>oracle</type-name>
 	<driver>oracle.jdbc.OracleDriver</driver>
 	<connection-urlpattern>jdbc:oracle:thin:@&lt;host&gt;:&lt;port1521&gt;:&lt;sid&gt;</
connection-url-pattern>
 	<ping-command>SELECT 1 FROM DUAL</ping-command>
 	<connection-properties>
 		<connection-property>
 			<key>spotfire.kerberos.login.context</key>
 			<value>DatabaseKerberos</value>
 		</connection-property>
 		<connection-property>
 			<key>oracle.net.authentication_services</key>
 			<value>( KERBEROS5 )</value>
 		</connection-property>
 	</connection-properties>
 	...
</jdbc-type-settings>