5 Using WebLogic Wrapper Drivers
Note:
Oracle recommends that you use DataSource objects to get database connections in new applications. DataSource objects, along with the JNDI tree, provide access to pooled connections in a data source for database connectivity. The WebLogic wrapper drivers are deprecated. For existing or legacy applications that use the JDBC 1.x API, you can use the WebLogic wrapper drivers to get database connectivity.
This chapter includes the following sections:
Using the WebLogic RMI Driver (Deprecated)
A RMI driver client makes connections to the DBMS by looking up the DataSource object. This lookup is accomplished by using a Java Naming and Directory Service (JNDI) lookup, or by directly calling WebLogic Server which performs the JNDI lookup on behalf of the client.
Note:
RMI driver client functionality is deprecated and will be removed in future release. None of the features exposed in WLConnection
and WLDataSource
are supported by RMI driver clients.
The RMI driver replaces the functionality of both the WebLogic t3 driver (deprecated) and the Pool driver (deprecated), and uses the Java standard Remote Method Invocation (RMI) to connect to WebLogic Server rather than the proprietary t3 protocol.
Because the details of the RMI implementation are taken care of automatically by the driver, a knowledge of RMI is not required to use the WebLogic JDBC/RMI driver.
RMI Driver Client Interoperability
Interoperability with earlier WebLogic Server releases is limited. Participants (client/server or servers-to-server) must be from the same major release. Early 10.x clients can be updated to interoperate with later point and patch set releases by adding the ucp.jar
to the CLASSPATH
.
Security Considerations for WebLogic RMI Drivers
Applications that use JDBC over RMI allow unauthorized RMI access to a DataSource object, which is a potential security vulnerability as it can provide a client with uncontrolled access to a database. Oracle recommends replacing JDBC over RMI with local WebLogic data sources in these environments.
You can control JDBC over RMI communications by setting the
RmiJDBCSecurity
parameter in the DataSource object at the server
level.
See Enable RMI JDBC security in the Oracle WebLogic Server Administration Console Online Help.
The following are the valid values of the parameter:
-
Compatibility
- Allows uncontrolled access to DataSource objects for all incoming JDBC application calls over RMI. This setting should only be used when strong network security is in place.Compatibility
is the default value. -
Secure
- Rejects all incoming application JDBC calls over RMI by remote clients and servers. Internal interserver JDBC calls over RMI operations are allowed for the Logging Last Resource, Emulate Two-Phase Commit and One-Phase Commit Global Transactions Protocol options. TheSecure
option requires that all the servers are configued with an SSL listen port. If not, all operations fail with an exception.
Note:
The weblogic.jdbc.remoteEnabled
(deprecated) system
property is enabled by default. You can completely disable RMI access to DataSource
objects by setting the weblogic.jdbc.remoteEnabled
system property
to false
.
Setting Up WebLogic Server to Use the WebLogic RMI Driver
The RMI driver is accessible through DataSource objects, which are created in the WebLogic Server Administration Console. You should create DataSource objects in your WebLogic Server configuration before you use the RMI driver in your applications.
Sample Client Code for Using the RMI Driver
The following code samples show how to use the RMI driver to get and use a database connection from a WebLogic Server data source.
Import the Required Packages
Before you can use the RMI driver to get and use a database connection, you must import the following packages:
javax.sql.DataSource java.sql.* java.util.* javax.naming.*
Get the Database Connection
The WebLogic JDBC/RMI client obtains its connection to a DBMS from the DataSource object that you defined in the WebLogic Server Administration Console. There are two ways the client can obtain a DataSource object:
-
Using a JNDI lookup. This is the preferred and most direct procedure.
-
Passing the DataSource name to the RMI driver with the
Driver.connect()
method. In this case, WebLogic Server performs the JNDI look up on behalf of the client.
Using a JNDI Lookup to Obtain the Connection
To access the WebLogic RMI driver using JNDI, obtain a context from the JNDI tree by looking up the name of your DataSource object. For example, to access a DataSource called "myDataSource"
that is defined in the WebLogic Server Administration Console:
Context ctx = null; Hashtable ht = new Hashtable(); ht.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory"); ht.put(Context.PROVIDER_URL, "t3://hostname:port"); try { ctx = new InitialContext(ht); javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("myDataSource"); java.sql.Connection conn = ds.getConnection(); // You can now use the conn object to create // a Statement object to execute // SQL statements and process result sets: Statement stmt = conn.createStatement(); stmt.execute("select * from someTable"); ResultSet rs = stmt.getResultSet(); // Do not forget to close the statement and connection objects // when you are finished: } catch (Exception e) { // a failure occurred log message; } } finally { try { ctx.close(); } catch (Exception e) { log message; } try { if (rs != null) rs.close(); } catch (Exception e) { log message; } try { if (stmt != null) stmt.close(); } catch (Exception e) { log message; } try { if (conn != null) conn.close(); } catch (Exception e) { log message; } }
(Where hostname
is the name of the machine running your WebLogic Server and port
is the port number where that machine is listening for connection requests.)
In this example a Hashtable object is used to pass the parameters required for the JNDI lookup. There are other ways to perform a JNDI lookup. See WebLogic Server JNDI in Developing JNDI Applications for Oracle WebLogic Server.
Notice that the JNDI lookup is wrapped in a try/catch
block in order to catch a failed look up and also that the context is closed in a finally
block.
Note:
It may be possible to access a vendor-specific interface. This is done without RMI by casting to the vendor interface. For example:
OracleConnection oc = (OracleConnection) cconn;
This may not work if the vendor interface is not Serializable
. When a server is acting as a client, set networkClassLoadingEnabled
to true
on the server so that the generated RMI class is available (the default is true
for stand-alone clients).
Using Only the WebLogic RMI Driver to Obtain a Database Connection
Instead of looking up a DataSource object to get a database connection, you can access WebLogic Server using the Driver.connect()
method, in which case the JDBC/RMI driver performs the JNDI lookup. To access the WebLogic Server, pass the parameters defining the URL of your WebLogic Server and the name of the DataSource object to the Driver.connect()
method. For example, to access a DataSource called "myDataSource" as defined in the WebLogic Server Administration Console:
java.sql.Driver myDriver = (java.sql.Driver)
Class.forName("weblogic.jdbc.rmi.Driver").newInstance();
String url = "jdbc:weblogic:rmi";
java.util.Properties props = new java.util.Properties();
props.put("weblogic.server.url", "t3://hostname:port");
props.put("weblogic.jdbc.datasource", "myDataSource");
java.sql.Connection conn = myDriver.connect(url, props);
(Where hostname
is the name of the machine running your WebLogic Server and port
is the port number where that machine is listening for connection requests.)
You can also define the following properties which will be used to set the JNDI user information:
-
weblogic.user
—specifies a username -
weblogic.credential
—specifies the password for theweblogic.user
.
Row Caching with the WebLogic RMI Driver
Row caching is a WebLogic Server JDBC feature that improves the performance of your application. Normally, when a client calls ResultSet.next()
, WebLogic Server fetches a single row from the DBMS and transmits it to the client JVM. With row caching enabled, a single call to ResultSet.next()
retrieves multiple DBMS rows, and caches them in client memory. By reducing the number of trips across the wire to retrieve data, row caching improves performance.
Note:
WebLogic Server will not perform row caching when the client and WebLogic Server are in the same JVM.
You can enable and disable row caching and set the number of rows fetched per ResultSet.next()
call with the data source attributes Row Prefetch Enabled and Row Prefetch Size, respectively. You set data source attributes via the WebLogic Server Administration Console. To enable row caching and to set the row prefetch size attribute for a data source, follow these steps:
-
If you have not already done so, in the Change Center of the WebLogic Server Administration Console, click Lock & Edit.
-
In the Domain Structure tree, expand Services > JDBC, then select Data Sources.
-
On the Summary of Data Sources page, click the data source name.
-
Select the Configuration: General tab and then do the following:.
-
Select the Row Prefetch Enabled check box.
-
In Row Prefetch Size, type the number of rows you want to cache for each
ResultSet.next()
call.
-
-
Click Save.
-
To activate these changes, in the Change Center of the WebLogic Server Administration Console, click Activate Changes.
See the JDBC Data Source: Configuration: General page in the Oracle WebLogic Server Administration Console Online Help.
Important Limitations for Row Caching with the WebLogic RMI Driver
Keep the following limitations in mind if you intend to implement row caching with the RMI driver:
-
WebLogic Server only performs row caching if the result set type is both TYPE_FORWARD_ONLY and CONCUR_READ_ONLY.
-
Certain data types in a result set may disable caching for that result set. These include the following:
-
LONGVARCHAR/LONGVARBINARY
-
NULL
-
BLOB/CLOB
-
ARRAY
-
REF
-
STRUCT
-
JAVA_OBJECT
-
-
Certain ResultSet methods are not supported if row caching is enabled and active for that result set. Most pertain to streaming data, scrollable result sets or data types not supported for row caching. These include the following:
-
getAsciiStream()
-
getUnicodeStream()
-
getBinaryStream()
-
getCharacterStream()
-
isBeforeLast()
-
isAfterLast()
-
isFirst()
-
isLast()
-
getRow()
-
getObject (Map)
-
getRef()
-
getBlob()/getClob()
-
getArray()
-
getDate()
-
getTime()
-
getTimestamp()
-
Limitations When Using Global Transactions
Populating a RowSet in a global transaction may fail with Fetch Out Of Sequency
exception. For example:
-
When the RMI call returns, the global transaction is suspended automatically by the server instance.
-
The JDBC driver invalidates the pending
ResultSet
object to release the system resources. -
The client tries to read data from the invalidated
ResultSet
. -
A
Fetch Out Of Sequency
exception is thrown if that data has not been prefetched. Since the number of rows prefetched is vendor specific, you may or may not encounter this issue, especially when working with one or two rows.
If you encounter this exception, make sure to populate the RowSet on the server side and then serialize it back to the client.
Using the WebLogic JTS Driver (Deprecated)
Your application uses the JTS driver to access a connection from the data source.
WebLogic Server also uses the JTS driver internally when a connection from a data source that uses a non-XA JDBC driver participates in a global transaction (Logging Last Resource and Emulate Two-Phase Commit). This behavior enables a non-XA resource to emulate XA and participate in a two-phase commit transaction. See JDBC Data Source Transaction Options in Administering JDBC Data Sources for Oracle WebLogic Server.
Note:
The WebLogic Server JTS driver only supports T3 protocol when participating connections that use Logging Last Resource (LLR).
Once a transaction begins, all database operations in an execute thread that get their connection from the same data source share the same connection from that data source. These operations can be made through services such as Enterprise JavaBeans (EJB) or Java Messaging Service (JMS), or by directly sending SQL statements using standard JDBC calls. All of these operations will, by default, share the same connection and participate in the same transaction. When the transaction is committed or rolled back, the connection is returned to the pool.
Although Java clients may not register the JTS driver themselves, they may participate in transactions via Remote Method Invocation (RMI). You can begin a transaction in a thread on a client and then have the client call a remote RMI object. The database operations executed by the remote object become part of the transaction that was begun on the client. When the remote object is returned back to the calling client, you can then commit or roll back the transaction. The database operations executed by the remote objects must all use the same data source to be part of the same transaction.
For the JTS driver and your application to participate in a global transaction, the application must call conn = myDriver.connect("jdbc:weblogic:jts", props);
within a global transaction. After the transaction completes (gets committed or rolled back), WebLogic Server puts the connection back in the data source. If you want to use a connection for another global transaction, the application must call conn = myDriver.connect("jdbc:weblogic:jts", props);
again within a new global transaction.
Sample Client Code for Using the JTS Driver
To use the JTS driver, you must first use the WebLogic Server Administration Console to create a data source in WebLogic Server.
This explanation demonstrates creating and using a JTS transaction from a server-side application and uses a data source named "myDataSource
."