Using a vendor specific datasource (oracel data source) to weblogic JNDI

Hi !
Is there can I use vendor specific datasource implementation such as oracle
DataSource object and bind it to Weblogic JNDI so that I can create
connection pools. Oracle Datasource let's you pass the user, password at
run time like Datasource.getConnection(user,password).
The reason is I need to access various oracle accounts within the same
oracle instance and I need to add to connect with a new user account (when
ever there is a new oracle user) without stopping the application server.
If anybody knows any workrounds doing this in weblogic I would really
appreciate it.
Thanks,
Srinivas

Hi,
  You can create a JDBC DataSource using the Visual Administrator GUI as given in the link http://help.sap.com/saphelp_nw04/helpdata/en/c0/3ad4d5cdc66447a188b582aad537d3/content.htm
  In your J2EE Application you can obtain the connection using InitialContext lookup for 'jdbc/<Alias Name>'.
  Also please select the correct SQL Engine option
http://help.sap.com/saphelp_nw04/helpdata/en/45/ef362dc57b1e46aa6f445ec6247103/content.htm
Regards,
S.Divakar

Similar Messages

  • [svn] 1978: Bug: vendors. properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly .

    Revision: 1978
    Author: [email protected]
    Date: 2008-06-06 08:05:34 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Bug: vendors.properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly.
    QA: Yes - we need automated tests to make sure that errors.properties and vendors.properties in BlazeDS/LCDS are loaded properly.
    Doc: No
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/PropertyStringResource Loader.java
    blazeds/branches/3.0.x/modules/opt/src/jrun/flex/messaging/security/JRunLoginCommand.java
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    I have a lot of grief with this version of Windows Media Player.
    It is very buggy and frustrating to use.
    I have my Music library on a QNAP NAS, which is as reliable as they come.
    System notifications make it not save changes.  It also does not do a good job of interpreting albums and artists from folders.  Changes to track names are not saved, nor are tracks moved to other albums, renamed albums, changes to genre, artist
    or date.  It separates and merges albums/tracks without sense or reason.  Some changes I've made up to 4 times, then closed WMP and re-started my machine to check if it has/hasn't saved the changes.  Often it has not.
    This is the first time I've used WMP in this capacity, and I do not recommend it.
    New service pack please.

  • Using ConnBean and CursorBean with a Data Source

    Hi all,
    I',m making a web app. using the Jdev (RUP4) with OA Extension. I looked in the help menu under "About Data-Access JavaBeans and Tags". Here I found the following example, but for some stange reason I cannot get the setProperty to work.
    Example: Using ConnBean and CursorBean with a Data Source This following is a sample JSP page that uses ConnBean with a data source to open a connection, then uses CursorBean to execute a query.
    <%@ page import="java.sql.*, oracle.jsp.dbutil.*" %>
    <jsp:useBean id="cbean" class="oracle.jsp.dbutil.ConnBean" scope="session">
    <jsp:setProperty name="cbean" property="dataSource"
    value="<%=request.getParameter("datasource")%>"/>
    </jsp:useBean>
    <% try {
    cbean.connect();
    String sql="SELECT ename, sal FROM scott.emp ORDER BY ename";
    CursorBean cb = cbean.getCursorBean (CursorBean.PREP_STMT, sql);
    out.println(cb.getResultAsHTMLTable());
    cb.close();
    cbean.close();
    } catch (SQLException e) {
    out.println("<P>" + "There was an error doing the query:");
    out.println("<PRE>" + e + "</PRE>\n<P>"); }
    %>
    Does anyone know how to set the "Property" to a datasource and make it work?
    Best regards,
    MHCI

    There is no point-and-click (Import Data Source Metadata) way to use an LDAP server as a datasource. You have to use the Java Function provided on dev2dev. If you need help with it, please post here.
    - Mike

  • Crystal Report using a Web Service as a data source?

    I am trying to figure out how to use a Web Service as a data source in Crystal Reports. When I use the report wizard, I do not see an option to select Web Service as a new connection. We are currently using Crystal Reports 2008 v12.1.0.892. Could it be that my version does not support this? Is there an update that contains this feature? Please help.

    Thanks for your response. Unfortunately I do not see a radio button for Web Services. I've read that it should be there too. Could it be a missing plug-in or patch?
    Here are screen shots of what I see when trying to connect to an XML. Any thoughts?
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard1.jpg]
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard2.jpg]

  • Help required to create portal without using any vendor specific API's

    Hi All,
    I am trying to develope a portal without using any vendor specific API or tool like Weblogic workshop or Vignette Wizard. I would like to know whether Sun Microsystem provides any API for developing portal. I would also appreciate if I can get few links for developing portal using java API's...
    Thanks in advance...
    Dgk

    Sure Sun provides the tools: it is called the compiler. Now all you need to do is write the code for a portal. But since there are vendor specific solutions available that could make your life a lot easier, writing one yourself is like reinventing the wheel.
    Pardon my mild sarcasm, but avoiding API's not developed by Sun is not the general idea behind the Java platform. You are encouraged to use those API's.

  • Standalone application can't get JDBC data source from Weblogic 10.3

    We have the following configuration :
    A Weblogic server 10.3 (default installation).
    The server contains a JMS queue (jndi name: "DMQ") and JDBC data sources (jndi names: Oracle thin XA - "dataSource", MS SQL - "dataSource1")
    We have built wlfullclient5.jar for Java 1.5 ([http://edocs.bea.com/wls/docs103/client/jarbuilder.html#wp1078122]) (according to the docs)
    And now we use a test standalone application with the wlfullclient5.jar :
    public static void main (String[] args) throws NamingException {
    bq. Hashtable&lt;String, String&gt; env = new Hashtable&lt;String, String&gt;(); \\     env.put(Context.+INITIAL_CONTEXT_FACTORY+, "weblogic.jndi.WLInitialContextFactory"); \\     env.put(Context.+PROVIDER_URL+, "http://serv1:7001"); \\     env.put(Context.+SECURITY_CREDENTIALS+, "weblogic"); \\     env.put(Context.+SECURITY_PRINCIPAL+, "weblogic"); \\     InitialContext ic = new InitialContext(env); \\ \\ System.+out+.println("Get DMQ"); \\     ic.lookup("DMQ"); \\ System.+out+.println("Get dataSource"); \\     ic.lookup("dataSource");
    bq. System.+out+.println("Get dataSource1"); \\     ic.lookup("dataSource1"); \\ System.+out+.println("Done"); \\
    Here is the output when connected to WLS 10.3:
    bq. Get DMQ \\ Get dataSource \\ Exception in thread "Main Thread" java.lang.AssertionError: Failed to generate class for weblogic.jdbc.common.internal.RmiDataSource_1030_WLStub \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:790_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:779_) \\ at weblogic.rmi.extensions.StubFactory.getStub(_StubFactory.java:74_) \\ at weblogic.rmi.internal.StubInfo.resolveObject(_StubInfo.java:213_) \\ at weblogic.rmi.internal.StubInfo.readResolve(_StubInfo.java:207_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke0(_Native Method_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke(_NativeMethodAccessorImpl.java:39_) \\ at sun.reflect.DelegatingMethodAccessorImpl.invoke(_DelegatingMethodAccessorImpl.java:25_) \\ at java.lang.reflect.Method.invoke(_Method.java:585_) \\ at java.io.ObjectStreamClass.invokeReadResolve(_ObjectStreamClass.java:1033_) \\ at java.io.ObjectInputStream.readOrdinaryObject(_ObjectInputStream.java:1728_) \\ at java.io.ObjectInputStream.readObject0(_ObjectInputStream.java:1305_) \\ at java.io.ObjectInputStream.readObject(_ObjectInputStream.java:348_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:197_) \\ at weblogic.rjvm.MsgAbbrevInputStream.readObject(_MsgAbbrevInputStream.java:564_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:193_) \\ at weblogic.rmi.internal.ObjectIO.readObject(_ObjectIO.java:62_) \\ at weblogic.rjvm.ResponseImpl.unmarshalReturn(_ResponseImpl.java:240_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:348_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:259_) \\ at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:392_) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:380_) \\ at javax.naming.InitialContext.lookup(_InitialContext.java:351_) \\ at test.main(_test.java:23_) \\ Caused by: java.lang.reflect.InvocationTargetException \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance0(_Native Method_) \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance(_NativeConstructorAccessorImpl.java:39_) \\ at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(_DelegatingConstructorAccessorImpl.java:27_) \\ at java.lang.reflect.Constructor.newInstance(_Constructor.java:494_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:788_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:779_) \\ at weblogic.rmi.extensions.StubFactory.getStub(_StubFactory.java:74_) \\ at weblogic.rmi.internal.StubInfo.resolveObject(_StubInfo.java:213_) \\ at weblogic.rmi.internal.StubInfo.readResolve(_StubInfo.java:207_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke0(_Native Method_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke(_NativeMethodAccessorImpl.java:39_) \\ at sun.reflect.DelegatingMethodAccessorImpl.invoke(_DelegatingMethodAccessorImpl.java:25_) \\ at java.lang.reflect.Method.invoke(_Method.java:585_) \\ at java.io.ObjectStreamClass.invokeReadResolve(_ObjectStreamClass.java:1033_) \\ at java.io.ObjectInputStream.readOrdinaryObject(_ObjectInputStream.java:1728_) \\ at java.io.ObjectInputStream.readObject0(_ObjectInputStream.java:1305_) \\ at java.io.ObjectInputStream.readObject(_ObjectInputStream.java:348_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:197_) \\ at weblogic.rjvm.MsgAbbrevInputStream.readObject(_MsgAbbrevInputStream.java:564_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:193_) \\ at weblogic.rmi.internal.ObjectIO.readObject(_ObjectIO.java:62_) \\ at weblogic.rjvm.ResponseImpl.unmarshalReturn(_ResponseImpl.java:240_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:348_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:259_) \\ at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:392_) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:381_) \\ at javax.naming.InitialContext.lookup(_InitialContext.java:351_) \\ at test.main(_test.java:26_) \\ Caused by: java.lang.ArrayIndexOutOfBoundsException: 6 \\ at weblogic.jdbc.common.internal.RmiDataSource_1030_WLStub.ensureInitialized(Unknown Source) \\ at weblogic.jdbc.common.internal.RmiDataSource_1030_WLStub.&lt;init&gt;(Unknown Source) \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance0(_Native Method_) \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance(_NativeConstructorAccessorImpl.java:39_) \\ at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(_DelegatingConstructorAccessorImpl.java:27_) \\ at java.lang.reflect.Constructor.newInstance(_Constructor.java:494_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:788_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:779_) \\ at weblogic.rmi.extensions.StubFactory.getStub(_StubFactory.java:74_) \\ at weblogic.rmi.internal.StubInfo.resolveObject(_StubInfo.java:213_) \\ at weblogic.rmi.internal.StubInfo.readResolve(_StubInfo.java:207_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke0(_Native Method_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke(_NativeMethodAccessorImpl.java:39_) \\ at sun.reflect.DelegatingMethodAccessorImpl.invoke(_DelegatingMethodAccessorImpl.java:25_) \\ at java.lang.reflect.Method.invoke(_Method.java:585_) \\ at java.io.ObjectStreamClass.invokeReadResolve(_ObjectStreamClass.java:1033_) \\ at java.io.ObjectInputStream.readOrdinaryObject(_ObjectInputStream.java:1728_) \\ at java.io.ObjectInputStream.readObject0(_ObjectInputStream.java:1305_) \\ at java.io.ObjectInputStream.readObject(_ObjectInputStream.java:348_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:197_) \\ at weblogic.rjvm.MsgAbbrevInputStream.readObject(_MsgAbbrevInputStream.java:564_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:193_) \\ at weblogic.rmi.internal.ObjectIO.readObject(_ObjectIO.java:62_) \\ at weblogic.rjvm.ResponseImpl.unmarshalReturn(_ResponseImpl.java:240_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:348_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:259_) \\ at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:392_) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:380_) \\ at javax.naming.InitialContext.lookup(_InitialContext.java:351_) \\ at test.main(_test.java:23_)
    But at the same time the output when connected to WLS 10.0 is :
    Get DMQ \\Get dataSource \\Get dataSource1 \\Done
    (so that the test passed)
    Could you give me a piece of advice ?
    Thanks,
    Sergey

    I hit the same problem as yours. This issue is caused by JDK version. The JDK used by Weblogic 10.3 is java 6, while your client program's jdk version is java5. So change the both of them to java 6. This issue will be fixed.
    Don't forget to rebuild the wlfullclient.jar which also should be java 6.
    Good luck!

  • Can't create a data source on weblogic 9.2

    I tryed to create a Data Source on Weblogic 9.2 to Oracle 9.2.0.5. Ocurrs the exception below:
    ####<Jul 15, 2009 5:19:34 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689174163> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/jdbc/GlobalJDBCDataSourceTable.do>
    ####<Jul 15, 2009 5:19:34 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689174164> <BEA-240001> <<ConsoleInteraction: User is viewing <com.bea.console.actions.jdbc.datasources.GlobalDataSourceTableAction> for <*> <com.bea.console.handles.JMXHandle%28%22com.bea%3AName%3DVivoSafeDataSource%2CType%3Dweblogic.j2ee.descriptor.wl.JDBCDataSourceBean%2CParent%3D%5BSOA_ALSDS_HOM%5D%2FJDBCSystemResources%5BVivoSafeDataSource%5D%2CPath%3DJDBCResource%5BVivoSafeDataSource%5D%22%29>>>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185241> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185241> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/ChangeManagerAction.do>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185244> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/systemstatus/begin.do>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185280> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185280> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/MessagesAction.do>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185282> <BEA-240002> <Struts module /jdbc is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185282> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/jdbc/GlobalJDBCDataSourceTable.do>
    ####<Jul 15, 2009 5:19:45 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689185282> <BEA-240001> <<ConsoleInteraction: User is viewing <com.bea.console.actions.jdbc.datasources.GlobalDataSourceTableAction> for <*> <com.bea.console.handles.JMXHandle%28%22com.bea%3AName%3DVivoSafeDataSource%2CType%3Dweblogic.j2ee.descriptor.wl.JDBCDataSourceBean%2CParent%3D%5BSOA_ALSDS_HOM%5D%2FJDBCSystemResources%5BVivoSafeDataSource%5D%2CPath%3DJDBCResource%5BVivoSafeDataSource%5D%22%29>>>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195901> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195901> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/ChangeManagerAction.do>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195904> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/systemstatus/begin.do>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195941> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195942> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/MessagesAction.do>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195949> <BEA-240001> <Dynamically registering module /com/bea/console/actions/jdbc/datasources/createjdbcdatasource, config XML /_pageflow/struts-config-com-bea-console-actions-jdbc-datasources-createjdbcdatasource.xml>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195949> <BEA-240001> <Dynamically registering module /com/bea/console/actions/jdbc/datasources/createjdbcdatasource, config XML /_pageflow/struts-config-com-bea-console-actions-jdbc-datasources-createjdbcdatasource.xml>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195979> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/jdbc/datasources/createjdbcdatasource/begin.do>
    ####<Jul 15, 2009 5:19:55 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689195982> <BEA-240001> <<ConsoleInteraction: User has launched the <CreateJDBCDataSource> assistant>>
    ####<Jul 15, 2009 5:19:56 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689196064> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/jdbc/datasources/createjdbcdatasource/start.do>
    ####<Jul 15, 2009 5:20:27 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689227188> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/jdbc/datasources/createjdbcdatasource/start.do>
    ####<Jul 15, 2009 5:20:27 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689227239> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:20:27 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689227239> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/ChangeManagerAction.do>
    ####<Jul 15, 2009 5:20:27 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689227242> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/systemstatus/begin.do>
    ####<Jul 15, 2009 5:20:27 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689227280> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:20:27 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689227280> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/MessagesAction.do>
    ####<Jul 15, 2009 5:21:08 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689268647> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/jdbc/datasources/createjdbcdatasource/selectTransactionOptions.do>
    ####<Jul 15, 2009 5:21:08 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689268650> <BEA-240001> <<ConsoleInteraction: User has selected Next to "Select Transaction Options" page of <CreateJDBCDataSource> assistant>>
    ####<Jul 15, 2009 5:21:08 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689268713> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:21:08 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689268714> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/ChangeManagerAction.do>
    ####<Jul 15, 2009 5:21:08 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689268716> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/systemstatus/begin.do>
    ####<Jul 15, 2009 5:21:08 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689268754> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:21:08 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689268754> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/MessagesAction.do>
    ####<Jul 15, 2009 5:21:39 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689299657> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/jdbc/datasources/createjdbcdatasource/addConnectionProperties.do>
    ####<Jul 15, 2009 5:21:39 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689299659> <BEA-240001> <<ConsoleInteraction: User has selected Next to "ConnectionProperties" page of <CreateJDBCDataSource> assistant>>
    ####<Jul 15, 2009 5:21:39 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689299709> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:21:39 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689299709> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/ChangeManagerAction.do>
    ####<Jul 15, 2009 5:21:39 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689299712> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/systemstatus/begin.do>
    ####<Jul 15, 2009 5:21:39 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689299750> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:21:39 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689299750> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/MessagesAction.do>
    ####<Jul 15, 2009 5:24:42 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689482906> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/jdbc/datasources/createjdbcdatasource/testConnection.do>
    ####<Jul 15, 2009 5:24:42 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689482916> <BEA-240001> <<ConsoleInteraction: User has selected Next to "Test Database Connection" page of <CreateJDBCDataSource> assistant>>
    ####<Jul 15, 2009 5:24:42 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689482978> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:24:42 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689482978> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/ChangeManagerAction.do>
    ####<Jul 15, 2009 5:24:42 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689482981> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/systemstatus/begin.do>
    ####<Jul 15, 2009 5:24:43 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689483018> <BEA-240002> <Struts module is configured to use com.bea.console.internal.ConsolePageFlowRequestProcessor as the request processor, but the <controller> element does not contain a <set-property> for "controllerClass". Page Flow actions in this module may not be handled correctly.>
    ####<Jul 15, 2009 5:24:43 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689483018> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/MessagesAction.do>
    ####<Jul 15, 2009 5:26:24 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689584639> <BEA-240001> <Attempting to instantiate SharedFlowControllers for request /console/com/bea/console/actions/jdbc/datasources/createjdbcdatasource/testConnectionConfiguration.do>
    ####<Jul 15, 2009 5:26:24 PM BRT> <Info> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689584646> <BEA-240001> <<ConsoleInteraction: User has selected "Test Configuration" on "Test Database Connection" page of <CreateJDBCDataSource> assistant>>
    ####<Jul 15, 2009 5:26:24 PM BRT> <Error> <Console> <mocoes> <SOA_ALDS_HOM_Admin> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <a0016433> <> <> <1247689584951> <BEA-240003> <Console encountered the following error java.sql.SQLException: Io exception: Connection reset
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:441)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
         at com.bea.console.utils.jdbc.JDBCUtils.testConnection(JDBCUtils.java:504)
         at com.bea.console.actions.jdbc.datasources.createjdbcdatasource.CreateJDBCDataSource.testConnectionConfiguration(CreateJDBCDataSource.java:369)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:869)
         at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:808)
         at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:477)
         at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:305)
         at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:335)
         at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:51)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:95)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2042)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:63)
         at org.apache.beehive.netui.pageflow.interceptor.action.ActionInterceptor.wrapAction(ActionInterceptor.java:167)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.invoke(ActionInterceptors.java:49)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:57)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:86)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2114)
         at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:221)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:554)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:851)
         at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:630)
         at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:157)
         at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:241)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:130)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1169)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:688)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:144)
         at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:107)
         at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:99)
         at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:180)
         at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:168)
         at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:222)
         at com.bea.netuix.nf.ControlLifecycle$2.visit(ControlLifecycle.java:178)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:351)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:361)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:128)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:339)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:330)
         at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:162)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:137)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:370)
         at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:229)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:183)
         at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:237)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:124)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3229)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2002)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1908)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1362)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    >
    JDBC Driver is "oracle.jdbc.OracleDriver"
    On other computer, I can connect to database when I use a "SQL Developer", but when I can't connect using Weblogic.
    What' the problem?

    Hi,
    It seems that while connecting to the database it's getting connection reset exception. have you tried connecting the database from where the machine you are trying to create datasource?
    Also, send the steps which you are following for creating the datasource.
    Regards,
    Sankar

  • Urgent help: how to create data source for Weblogic RMI driver

    Hi,
    Please let me how to create data source for Weblogic RMI driver using Administrator
    console.
    I understand that the following steps are required:
    1.Create connection pool for the RMI driver by specfiying URL as
    jdbc:weblogic:rmi and Driver as weblogic.jdbc.rmi.Driver. Now
    comes the problem.. what do put in properties text area? I am
    talking about key/value pairs required?
    2. Having done step 1 ( which I was not able to do) , create a new DataSource
    mapping to the connection pool created from step 1.
    How to accomplish step 1 ? I want to finally connect to Oracle
    database. Please help me.
    pradeep bhat

    DataSource will internally do that for you (It will use RMI internaly) . You
    dont have to worry about the details of using RMI driver. Thats what is a
    DataSource is for.
    sree
    "pradeep bhat" <[email protected]> wrote in message
    news:[email protected]...
    Hi Sree,
    What u have written is abt configuting Datasource for type 2 and
    4 drivers.
    But I want to know how to create data source for RMI driver. If
    I map this datasource to connection pool that is created for
    type 2 or 4 drivers, i don't understand why RMI drivers are
    required in first place. If i do map the data source to connection pool
    created
    for type 2 or 4 drivers then where i
    would not have used the URL as jdbc:weblogic:rmi and Driver as
    weblogic.jdbc.rmi.Driver.
    Hope u will help me.
    pradeep bhat
    "Sree Bodapati" <[email protected]> wrote:
    Hi Pradeep
    To create a connection pool you have to use a database driver not RMI
    driver. So use a thin driver or the WebLogic jDriver for Oracle to setup
    your connection pool. Once the connection pool is created you can create
    a
    DataSource and use this datasource to connect to the database.
    The RMI driver can be used to get connections from the database via the
    connection pool and in that case you dont need a datasource. Recommended
    approach is to use a DataSource.
    hth
    sree
    "PRADEEP BHAT" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    Please let me how to create data source for Weblogic RMI driver using
    Administrator
    console.
    I understand that the following steps are required:
    1.Create connection pool for the RMI driver by specfiying URL as
    jdbc:weblogic:rmi and Driver as weblogic.jdbc.rmi.Driver. Now
    comes the problem.. what do put in properties text area? I am
    talking about key/value pairs required?
    2. Having done step 1 ( which I was not able to do) , create a new
    DataSource
    mapping to the connection pool created from step 1.
    How to accomplish step 1 ? I want to finally connect to Oracle
    database. Please help me.
    pradeep bhat

  • Urgent help: how to create data source for Weblogic T3 driver

    Hi,
    Please let me how to create data source for Weblogic T3 driver
    using Administrator console.
    I understand that the following steps are required:
    1.Create connection pool for the RMI driver by specfiying URL
    as jdbc:weblogic:rmi and Driver as weblogic.jdbc.rmi.Driver.
    Now comes the problem.. what do put in properties text area?
    I am talking about key/value pairs required?
    2. Having done step 1 ( which I was not able to do) , create a
    new DataSource mapping to the connection pool created from
    step 1.
    How to accomplish step 1 ? I want to finally connect to Oracle database. Please
    help me.
    pradeep bhat

    Hi,
    Please let me how to create data source for Weblogic T3 driver
    using Administrator console.
    I understand that the following steps are required:
    1.Create connection pool for the RMI driver by specfiying URL
    as jdbc:weblogic:rmi and Driver as weblogic.jdbc.rmi.Driver.
    Now comes the problem.. what do put in properties text area?
    I am talking about key/value pairs required?
    2. Having done step 1 ( which I was not able to do) , create a
    new DataSource mapping to the connection pool created from
    step 1.
    How to accomplish step 1 ? I want to finally connect to Oracle database. Please
    help me.
    pradeep bhat

  • Creating DB2 data source in weblogic 9.2

    Hello,
    Steps how to create DB2 data source in weblogic 9.2 especially what driver to use for the same.

    Please look at Oracle docs
    Configuring JDBC Data Sources
    Supported Database Configurations
    Create JDBC data sources
    Thanks,
    Souvik.

  • Problem using JDBC (JNDI) DataSource and data-sources.xml w/ OC4J

    I have a JClient application developed in JDev X. It works fine when using a JDBC URL for the connection (which then writes the connection into the BC4J.xcfg files, one for each application module). However, I would like the app to retrieve the data source from the server's data-sources.xml file. However, when, on the configurations tab of the application module I set the connection type to JDBC DataSource, and give it the JNDI name, it does not work, either with the embedded OC4J or the stand-alone OC4J. Any suggestions???
    In the stand alone OC4J I verified that the data source exists (using java -jar admin.jar ormi://nemethzoltan3 admin welcome -application adatklinika -testDataSource -location jdbc/adatklinikaCoreDS) ... so the data source is defined in the data-sources.xml. Of course the error I get is JBO-30003.
    If I just try to "test" the data source in Jdeveloper (using the context menu of the app module, and setting it to use the adatklinikaCoreDS) I get a JNDI error: unable to lookup data source and at level 3 a "javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial". I checked, the data source is defined under tools->embedded OC4J properties->data sources.
    If I try to run the main form, simply nothing happens.
    Please help!!!

    Ok, figured out why running from jdeveloper wasn't working: the embedded OC4J server wasn't started (start it by running an html page from your project or something...and make sure you don't have a stand-alone oc4j running). AND more importantly it didn't have the library "embedded oc4j client" library included (project properties -> profiles -> development -> libraries)...which is needed for whatever reason.
    Now to try and get it working with the stand-alone OC4J...

  • Error -25596 when trying to connect to use the Informix Online Server native data source

    Hi All,
    We currently use a very old version on crystal (v9) and have recently downloaded the current version (14.1.1.1036) in order to investigate the effort involved in upgrading.
    In the past we have always connected to our IBM Informix Server using the native Crystal Reports Informix Online Server data source, but all attempts with the current version of Crystal Reports are failing with error -25596.
    The error is reported by Informix and it has this description:
    -25596  The INFORMIXSERVER value is not listed in the sqlhosts file or the
    Registry.
    The default database server name that the INFORMIXSERVER environment
    variable specifies must be a valid database server name in the file
    $INFORMIXDIR/etc/sqlhosts on UNIX or the registry on Windows. Check
    that the specified server is listed in the sqlhosts file or the
    registry.
    However, I'm of the opinion that the server is known and is configured OK (it's configured using the Informix SetNet32 application and it has resulted in this registry key being populated:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Informix\SqlHosts\prod1_devdb1 (NB: prod1_devdb1 is the name of the server I am trying to connect to).
    I can create ODBC datasources on my PC and they work OK.  I can also run our legacy VB6 application (using the Crystal 9 COM objects) and connect using the native drivers to the Informix database.
    My PC is running 64 bit Windows 7 Enterprise (fully patched).  Our Informix server is version 11.7 running on a SUSE server.
    Any suggestions for where to start looking to solve this?

    TIMESTAMP
    THREAD_ID
    FILENAME
    LINE_NUMBER
    LOGGED_DATA
    LEVEL
    2014-5-1-3-54-31
    10828
    ..\cserrinf.cpp
    523
    Error 14722 (..\csdll.cpp, 117): : C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x86\crw32_res_xx.dll
    1
    2014-5-1-3-54-51
    10828
    .\QESession.cpp
    445
    Set Product View Locale: 1033
    20
    2014-5-1-3-54-51
    10828
    .\QESession.cpp
    479
    Set Preferred View Locale: 3081
    20
    2014-5-1-3-54-51
    10828
    .\QESession.cpp
    501
    Set Process Locale: 3081
    20
    2014-5-1-3-54-51
    10828
    .\qecommon.cpp
    117
    This property is currently in a read-only state and cannot be modified. File Name: ".\QEProperty.cpp". Line: 217
    1
    2014-5-1-3-54-54
    10828
    .\xml.cpp
    211
    Leaving DbInitialize()
    20
    2014-5-1-3-54-54
    10828
    .\xml.cpp
    153
    In DbInitialize()
    20
    2014-5-1-3-54-54
    10828
    .\xml.cpp
    211
    Leaving DbInitialize()
    20
    2014-5-1-3-54-54
    10828
    .\xml.cpp
    385
    In DbFetchDatabaseType()
    20
    2014-5-1-3-54-54
    10828
    .\xml.cpp
    399
    Leaving DbFetchDatabaseType()
    20
    2014-5-1-3-54-54
    10828
    .\xml.cpp
    4732
    In DbFreeString()
    20
    2014-5-1-3-54-54
    10828
    .\xml.cpp
    4735
    Leaving DbFreeString()
    20
    2014-5-1-3-54-54
    10828
    .\jdbc.cpp
    241
    Leave DbInitialize()
    20
    2014-5-1-3-54-54
    10828
    .\jdbc.cpp
    185
    Enter DbInitialize()
    20
    2014-5-1-3-54-54
    10828
    .\jdbc.cpp
    241
    Leave DbInitialize()
    20
    2014-5-1-3-54-54
    10828
    .\jdbc.cpp
    555
    Enter DbFetchDatabaseType()
    20
    2014-5-1-3-54-54
    10828
    .\jdbc.cpp
    564
    Leave DbFetchDatabaseType()
    20
    2014-5-1-3-54-55
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-54-55
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-54-55
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-54-55
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    194
    Leaving DbInitialize()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    148
    In DbInitialize()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    194
    Leaving DbInitialize()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    317
    In DbFetchDatabaseType()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    326
    Leaving DbFetchDatabaseType()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    1858
    In DbFreeString()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    1861
    Leaving DbFreeString()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-54-57
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-54-57
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-54-57
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-2
    10828
    .\crdb_wic.cpp
    182
    Leaving DbInitialize()
    20
    2014-5-1-3-55-2
    10828
    .\crdb_wic.cpp
    127
    Enter DbInitialize()
    20
    2014-5-1-3-55-2
    10828
    .\crdb_wic.cpp
    182
    Leaving DbInitialize()
    20
    2014-5-1-3-55-2
    10828
    .\crdb_wic.cpp
    381
    Enter DbFetchDatabaseType()
    20
    2014-5-1-3-55-2
    10828
    .\crdb_wic.cpp
    397
    Leave DbFetchDatabaseType()
    20
    2014-5-1-3-55-2
    10828
    .\crdb_wic.cpp
    404
    In DbFreeString()
    20
    2014-5-1-3-55-2
    10828
    .\crdb_wic.cpp
    407
    Leaving DbFreeString()
    20
    2014-5-1-3-55-9
    10828
    ..\crdb_p2s.cpp
    570
    Entering SQLLogOnSQLServerWithExtendableOptions
    20
    2014-5-1-3-55-45
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-45
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-45
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-55-45
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-46
    10828
    ..\crdb_p2s.cpp
    577
    Leaving SQLLogOnSQLServerWithExtendableOptions
    20
    2014-5-1-3-55-46
    10828
    ..\serverhandle.cpp
    356
    succeeded: serverName=prod1_devdb1,databaseName=globalstar,userID=scottr
    1
    2014-5-1-3-55-46
    10828
    ..\..\convert.cpp
    864
    Error: message=, DbError=202
    1
    2014-5-1-3-55-46
    10828
    ..\cserrinf.cpp
    523
    Error 31816 (..\..\src\data\queryenghelp.cpp, 549): Logon failed.:
    1
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\jdbc.cpp
    173
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    ..\..\src\print\format\imageretriever.cpp
    905
    Destroy API called. Image Retriever was not used. No cleanup necessary.
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    219
    In DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    271
    Leaving DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\jdbc.cpp
    250
    Enter DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    203
    In DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    252
    Leaving DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\crdb_wic.cpp
    190
    In DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\crdb_wic.cpp
    241
    Leaving DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    203
    In DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    252
    Leaving DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\crdb_wic.cpp
    190
    In DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\crdb_wic.cpp
    241
    Leaving DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    219
    In DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    271
    Leaving DbTerminate()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    113
    In DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\javabeans.cpp
    136
    Leaving DllMain()
    20
    2014-5-1-3-55-53
    10828
    .\xml.cpp
    112
    Leaving DllMain()
    20

  • Some doubts in using resource-ref,connection pool n Data-source

    Hi all ,
    I need little bit clarification in the following points.
    1) Does the connection pool which is created can be displayed in JNDI Tree???
    I am seeing only DataSOurce in the JNDI Tree Only.
    2)In case of Bean Managed Persistance, in ejb-jar.xml,
    I had given the following info.
    <resource-ref>
             <res-ref-name>ramukkDataSource</res-ref-name>
             <res-type>javax.sql.DataSource</res-type>
             <res-auth>Container</res-auth>
         </resource-ref>Does the <res-ref-name> refers to Datasource Name??
    In weblogic-ejb-jar.xml
    <reference-descriptor>
           <resource-description>
              <res-ref-name>ramukkDataSource</res-ref-name>
              <jndi-name>ramukkpool</jndi-name>
           </resource-description>
         </reference-descriptor>Here <jndi-name> refers to connection pool as per weblogic bible book.
    If so when i deployed my ejb into the server iam getting Datasource cant be found.
    If i had given like the following,
    In ejb-jar.xml
    <resource-ref>
              <res-ref-name>jdbc/ramuJndi</res-ref-name>
              <res-type>javax.sql.DataSource</res-type>
              <res-auth>Container</res-auth>
         </resource-ref> In weblogic-ejb-jar.xml
         <reference-descriptor>
              <resource-description>
               <res-ref-name>jdbc/ramuJndi</res-ref-name>
               <jndi-name>jdbc/ramuJndi</jndi-name>
           </resource-description>
        </reference-descriptor>Then only my ejb code is successfully deploying doing some work which is as per xpectation.
    Can any body tell why I have to give the same name for <res-ref-name> n <jndi-name>??
    I am working on this problem from last one week. Still not found the solution.
    Connection Pool Creation
    GENERAL::
    Name : ramukkpool
    url : jdbc:mysql://localhost:3306/test
    Driver Classname: com.mysql.jdbc.Driver
    Properties :
    user = root
    Password = XXX
    create
    TARGETS::
    i had shifted myServer from left side to right side n clicked >>Apply
    (Techncially can we say this as deploying the connection pool into server ???????????
    If not how to deploy the connection pool into server??)
    I did not get any errors in the console.
    Now i am creating a datasource
    CONFIGURATION:
    Name : ramukkDataSource
    JNDIName: jdbc/ramuJndi(Does we have to follow this convention only?? i.e JNDIName should start with jdbc/ only)
    PoolName: ramukkpool
    create
    TARGETS::
    I had shifed myServer from left to right n >>Apply.
    Now also i did not get any errors in the console.Thanx(in advance),
    ramu

    I have read the documentation.
    I changed my class to oracle.jdbc.pool.OracleConnectionCacheImpl from
    oracle.jdbc.pool.OracleConnectionPoolDataSource
    I observed in the EM that the Open JDBC Connections and Total JDBC Connections are the same. When I used oracle.jdbc.pool.OracleConnectionPoolDataSource my Total JDBC Connections was increasing and Open JDBC Connections remains 0.
    My question still remains unanswered, could some kindly help.
    Q? I have defined a data source in JDeveloper using
    oracle.jdbc.pool.OracleConnectionCacheImpl
    In my java bean I am using the code pasted below to make a connection to database.
    Can some one tell whether I am using the correct method of connection pooling mechanism or do I need to make some changes? This application uses JSP and used by lots of people which hits database very frequently.
    Any help is highly appreciable.
    Thanks in advance.
    *******Code to make connection*********
    private javax.naming.InitialContext context = null;
    private javax.sql.DataSource jdbcURL = null;
    private static final String url = "jdbc/ProdCoreDS";
    public boolean openConnection()
    try
        DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    context = new javax.naming.InitialContext();
    jdbcURL = (javax.sql.DataSource)context.lookup(url);
    con =  jdbcURL.getConnection();
    return true;
      catch(Exception e)
           System.out.println("Error in the Connection  "+e);
        e.printStackTrace();
                 return false;
         }}

  • How to use two RFC models in one Data Source for a Interactive Form UI Elem

    Hi
    I want to use two RFC models (two Function Modules from a SAP Backend system) in one context node of a View Controller in order to pass it as the data source to a Interactive Form UI element. Can I use the data binding mechanism directly or have I to copy the data into a Value Node within the view controller.
    Thanks for helping
    René Morel
    SAP (Schweiz) AG

    Rene,
    You can create a local context node in component controller and copy the data from both the RFC's to this node, then bind it to the view controller. Then you can make this view context node as the datasource of the interactive form.
    Regards,
    Anand

  • Using an SAS2008 Cube as a data source for BI Publisher errors

    Hi All,
    I am trying to use a SAS 2008 cube as a data source for a report in BI Publisher. When I defined the data source under the admin section I gave it the following details:
    Data Source=ntsasqa01;Provider=msolap.3;Initial Catalog=WWPR_SMG
    With a username / password that has access to the cube.
    When I try and test the connection the OC4J instance stops running and the test does not finish or error. If I use the data source and then setup a report and then try and view data I get an error like the one below:
    /app/oracle/OracleBI/xmlp/XMLP/Admin/DataSource/msmdacc.dll (     0509-022 Cannot load module /app/oracle/OracleBI/xmlp/XMLP/Admin/DataSource/msmdacc.dll.
         0509-103 The module has an invalid magic number.)
    I am not sure if the error is related to the initial issue of not being able to complete the test.
    I need to find a solution though as I have to make use of MDX to access the cubes.
    Please could someone give me some advice.
    Thanks,
    Kim.

    Hi Kim
    1. SAS cubes are not currently supported - http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10417.pdf. Unless SAS cubes can use the MS drivers?
    2. If you try and pursue it you might check the permissions on the ddll in the error to ensure you have rights over it.
    Either way you are not supported with a SAS cube so you are kinda on your own. Sorry I dont use SAS so Im not going to be much help other than stating the obvious :0)
    Regards
    Tim

Maybe you are looking for

  • My Logitech Webcam 500 does not work with Flash 10.4

    I am running 32-bit Windows Vista (unfortunately!) and recently upgraded as recommended to Flash Player 10.4.1.53.  Now when i go to some websites and want to use my webcam, it just brings up the settings window with a check box for Enable Hardware A

  • Printing to a Linksys Wireless Print Server with my MAC

    have a small home network using an ATT DSL modem-router. I have several PCs hardwired to the router and 1 older MAC wireless. I have a MAC G4 laptop and a Dell laptop (my wife's) also connected wirelessly and all work well. I have added a Linksys wir

  • Process Chain step repeat/restart

    I have a process chain which schedules 3 loads to psa and then loads the data into ods/cubes. it often fails here due to data problems. now there are at least 4 subsequent steps that are not executed due to this failure which is correct but i don't w

  • Problems getting started with ipad

    I just bought an Ipad and I connected it to my computer and downloaded itunes as it said and my ipad still has that message on it to connect to itunes.  what am I doing wrong???? Thanks

  • ALV How to save a variant?

    Hi experts, how can I save a layout variant? So I declared a variant, and put into reuse_alv_grid_display, but doesn't work instead of this. What could be the problem with it? DATA: g_variant like disvariant. CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EX