Connecting to Oracle Lite on iPaq

Hi all,
sorry to bother you, but I have quite a problem. I am running an application on the Creme VM on my iPaq, and trying to connect to Oracle Lite. Unfortunately, I get this classic error:
UnSatisfiedLinkError: No oljdbc40 in shared library path.
I have put the oljdbc40.dll in several places (\windows, \windows\creme\bin, \) but nothing works. Also, I have tried running my app with the commandline option: -Djava.library.path=\windows\creme\bin
Ofcourse, no solution there. If anyone could give me a hint on this, I would be very grateful.
Regards, Jean-Pierre Dessart.

Don't know if you're using J9 as your VM, but if so I had similar problems with other DLLs and the only way to make it see them (even if using java.library.path) was to place them in the bin directory under the path where you installed the VM in the device.
Hope this helps.
Regards

Similar Messages

  • Connecting to Oracle lite via VB6

    Hello
    is there a better way to connect to Oracle 10g when using VB6?
    this is what I have:
    Under references I am using Microsoft DAO 3.6 Object library
    I do have a module where I defined the following public variables:
    Public wsOracle As DAO.Workspace
    Public cnOracle As DAO.Connection
    Public strConn As String
    and a function to alllow me to connect to the database:
    Function ConnectDB()
    On Error GoTo Error_DataBaseError
    strConn = "ODBC;DSN=MY_DATABASE;UID=user;PWD=passr"
    Set wsOracle = DBEngine.CreateWorkspace("", "admin", "admin", dbUseODBC)
    wsOracle.DefaultCursorDriver = dbUseClientBatchCursor
    Set cnOracle = wsOracle.OpenConnection("", dbDriverNoPrompt, False, strConn)
    Error_DataBaseError:
    If Err <> 0 Then
    Call ErrorCatching("ConnectDB ()")
    End If
    End Function
    It seems to work but I am having issues, two apps are connected to the same Database one is in power builder y the other in VB6 after a certain time of inactivity I get timed out from the VB app and this gets also into the power builder app.
    but if one app is open for a long time it seems to work just fine. any ideas why?
    I read that I can use the Oracle Lite 40 ODBC Driver
    but I can't seem to find a way to do the call from VB6
    any ideas?
    any enlightenment will be appreciated

    Unfortunately, in 2.0 beta, the Infobus Data Form wizard
    connection editor only supported the Oracle Thin, OCI7 and OCI8
    drivers. For 2.0 production, Oracle Lite and the JDBC-ODBC bridge
    will also be supported.
    Regards,
    JDeveloper Team
    Poorna Byri (guest) wrote:
    : Hi,
    : Can we can connect to Oracle Lite 3.5 from Oracle JDeveloper2.0
    : Beta using Infobus Data Form. When I tried to create a file
    based
    : on "Infobus Based Data Form" wizard it is not displaying Oracle
    : Lite 3.5 driver. Can I create a TNS name for Oracle Lite 3.5
    : database.
    : Any help.
    : Thanks.
    : Poorna Byri
    null

  • Odbc connectivity for oracle lite

    Can Oracle lite be connected through ODBC for a windows front end application developed (other than developer 2000)

    Hi
    Can anyone please give the connect string to connect to Oracle Lite through ODBC driver from a VB.NET windows front end application?
    Regards
    Sangeetha

  • Trouble to connect to Oracle Lite with JDBC

    Hi.
    I have installed Oracle Lite 9i on my PC (Win 2000 Pro). Then I connected an HP Jornada 525 (WinCE 3.0) and with
    ActiveSync I installed the Oracle Mobile Client. Using MSql, I created some tables and did some data inserts - Oracle
    is working fine on the Pocket PC. The next step was to create an Java application that will run on the Jornada to
    connect to this database and edit its data. Here is the initial source code:
    import java.sql.*;
    public class JDBCEX {
    public void JDBCEX () {
    public static void main(String args[]) {
    Connection conn = null;
    Statement stmt = null;
    ResultSet retset = null;
    try {
    Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
    conn = DriverManager.getConnection("jdbc:Polite:Polite","system", "manager");
    catch (Exception e) {
    System.out.println(e);
    System.exit(0);
    This works fine on my PC, but in the Pocket PC it gave me: java.sql.SQLException: Internal Error. This after I expanded
    the jar files, 'cause before it tells me that ther is no oljdbc40 on the shared library path. I adjusted the classpath on the
    registry, but i does not have any impact ... There is no file with name oljdbc40, only JARs olite40 and olitejdbc40. I installed
    olitejdbcpj40.jar, and setting this library leads to the same error above.
    What could be wrong? Do you have any tutorial or can you list all steps necessary to bring this working?
    Thanks

    If you're attempting to use the ODBC API directly, have you downloaded the ODBC SDK from Microsoft? That will include some sample code, which is a great starting point. So far as I'm aware, you shouldn't need to configure anything in Borland C++ that you don't have to configure in any other C++ compiler to use ODBC.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Oracle Lite for iPAQ 1900

    We have to develop application on iPAQ PDA 1900 based on IntelXScale processor. We need Oracle Lite version for Windows CE and XScale processor. Does Oracle develop this version?

    I am running the Oracle 9i Lite client for StrongARM on my Dell Axim X5 which has the Xscale processor - seems to work fine.
    Simon.

  • Connection to Oracle Lite 8i

    I am trying to make a connection from JDeveloper 2.0 to Oracle
    Lite 8i 4.0.
    I get a connection defined in the connection wizard but I have
    to use the Sun Jdbc Odbc driver and it does not show up in the
    connections dropdown when I go to use it.
    Does anyone know how I can get a usable connection?
    Stan McDaniel
    null

    Laura,
    Can you tell me than what's the use of choosing an Oracle Lite
    driver in the Connection wizzard? The problem discribed below is
    not limited to applets: in applications I can't use my lite-
    connection either.
    And do you know of a way to use a thin driver to connect to an
    Oracle Lite database?
    Thanks a lot for the help so far,
    Marko.
    : Marko,
    : Yes, you can only use the JDBC thin driver when creating an
    : applet (this is generic, not specific to the Infobus). This
    is
    : because the OCI drivers require that the client of the app
    have
    : the OCIJDBC8.dll in their Oracle_Home, and that Oracle_Home be
    in
    : the client's PATH. Because an applet is self-contained, it
    has
    : no way of 'looking outside' itself for that client-side DLL.
    : With the JDBC thin driver, everything is included in the
    : classes111.zip file.
    : Laura
    : Marko (guest) wrote:
    : : Laura,
    : : Great, it works! Well, partly at least. I am now able to use
    : the
    : : driver in JDBC-applications. It is also possible to use the
    : : driver when defining a new Connection with the connection-
    : : wizzard.
    : : The only remaining problem is the fact that the newly
    defined
    : : connection can't be chosen, when I start creating an infobus-
    : : applet. Can it be that only thin and oci drivers can be used
    : for
    : : infobus-applets?
    : : JDeveloper Team (guest) wrote:
    : : : Marko,
    : : : If I remember correctly, Oracle Lite 4.0 was not available
    at
    : : the
    : : : time we released JDeveloper 2.0, so it is possible that
    the
    : : : drivers are not compatible.
    : : : You say that JDeveloper needs the 35 jar. Are you getting
    an
    : : : error when you try to define a connection? Can you tell
    me
    : : what
    : : : that error is? I will try to verify what is happening.
    : : : A few things to try:
    : : : 1. When you add the Oracle Lite library to your project
    : : : properties, make sure it appears before/above any other
    JDBC
    : : or
    : : : EJB libraries. If necessary, select the library in the
    list
    : : and
    : : : drag it up.
    : : : 2. When you edit the IDE Classpath, also make sure the
    : : pointers
    : : : to the Oracle Lite jars come before any of
    : : the 'classes111.zip'
    : : : files.
    : : : Laura
    : : : Marko (guest) wrote:
    : : : : I have the same problem. Oracle Lite 8i is shipped with
    : : : : olite35.jar and olite40.jar. JDeveloper can't use the
    : driver
    : : in
    : : : : olite40.jar for some reason. I have tried the solution
    : : : described
    : : : : below, but JDeveloper needs oljdbc35.dll in the shared
    : : library
    : : : : path to use olite35.jar. Guess what: there is only
    : : oljdbc40.dll
    : : : : in Oracle Lite 8i 4.0.
    : : : : JDev Team (guest) wrote:
    : : : : : Stan,
    : : : : : This is documented in the Release Notes as follows:
    : : : : : 1. Install JDeveloper.
    : : : : : 2. Install Oracle Lite 3.6 or higher.
    : : : : : 3. Launch JDeveloper.
    : : : : : 4. Add a library for Oracle Lite by following these
    : steps:
    : : : : : a.Choose the menu option Tools | Default Project
    : : : : Properties.
    : : : : : b.Click the Libraries button at the bottom of the
    : : dialog.
    : : : : : c.Click the New button on the lower right to add a
    new
    : : : : : library.
    : : : : : d.Name the library Oracle Lite by typing in the
    Name
    : : : field.
    : : : : : e.Add the path to the Oracle Lite driver by typing
    in
    : : the
    : : : : : Class Path field. This should be a jar file called
    : : : : : <oracle_home>\lite\classes\olite36.jar, but check
    : the
    : : : : : documentation for your version of Oracle Lite.
    : : : : : f.Click OK to add the Library. JDeveloper analyses
    the
    : : : : : dependencies for the driver and returns to the
    : : : : Default
    : : : : : Project Properties dialog.
    : : : : : g.Click Add to add Oracle Lite to the default
    project
    : : : : : properties for all future generated projects.
    : : : : Alternatively,
    : : : : : you may add the Oracle Lite driver on a
    : : : : : project by project basis by selecting Project |
    : : Project
    : : : : : Properties and adding the newly created library
    to
    : : the
    : : : : : current project.
    : : : : : 5. Quit JDeveloper.
    : : : : : 6. Add the Oracle Lite jar file to the IDE Classpath
    by
    : : : : following
    : : : : : these steps:
    : : : : : a.Open the file <jdev_home>\bin\jdeveloper.ini.
    : : : : : b.Under the section [Java_Global], add the path of
    the
    : : : : Oracle
    : : : : : Lite driver to the IDEClassPath. This should be a
    : jar
    : : : : file
    : : : : : called
    : : : : : <oracle_home>\lite\classes\olite36.jar, but check
    : the
    : : : : : documentation for your version of Oracle Lite.
    : : : : : 7. Restart JDeveloper.
    : : : : : Stan McDaniel (guest) wrote:
    : : : : : : I am trying to make a connection from JDeveloper 2.0
    to
    : : : : Oracle
    : : : : : : Lite 8i 4.0.
    : : : : : : I get a connection defined in the connection wizard
    but
    : : I
    : : : : have
    : : : : : : to use the Sun Jdbc Odbc driver and it does not show
    up
    : : in
    : : : : the
    : : : : : : connections dropdown when I go to use it.
    : : : : : : Does anyone know how I can get a usable connection?
    : : : : : : Stan McDaniel
    null

  • JDeveloper 10G (BPEL Designer): how to create db connection to Oracle Lite

    I want to create a JDeveloper database connection to the Oracle Lite database installed with JDeveloper 10G BPEL Designer, but haven't been able to find any info on the subject.
    Can anyone point me to some info or walk me through it?
    Regards

    To connect JDeveloper 10g to an Oracle Lite database, you will need to follow this setup.
    1. Create an ODBC entry for the Oracle Lite database. If you have installed Oracle Lite 10g Mobile Development Kit, you should have a copy of POLITE.ODB pre-installed. Check your ODBC.ini, or run Administrative Tools > Data Sources (ODBC), and follow the polite entry pattern. If you create a new Oracle Lite database, you must create a matching enrty in the ODBC configuration file.
    2. In JDeveloper, create a new connection for your Oracle Lite database.
    The Connection Name should match your entry in ODBC for ease of reading.
    The Connection Type should be Oracle Lite.
    The Username is system.
    The Password is xxx.
    The Deploy Password box is checked.
    The Datasource Name must match the ODBC entry exactly.
    Leave the rest of the fields as is.
    Test your new connection.
    Enjoy.

  • How (Funny)  is oracle lite on iPAQ !!!

    i am doing VB programming on msacess in iPAQ device ,
    there is some limitation in sql and one told me those are not exists in orale lite
    so i tred it , intallation ok , running msql ok , creating odb ok ,
    when it comes to programming with ADOCE it is the disaster ;
    i have table ORDER ( OREDERNO NUMBER(9) , ..... )
    when i use
    set orders = CreateObject(oladoce.recordset)
    orders.Open "ORERS", ,1,3
    orders.AddNew
    orders.Fields("ORDERNO").value = 21
    orders.Update
    the program exits on line 2 , even ON ERROR can't catch the error
    the funny thing it passes for some other numbers e.g.
    orders.Fields("ORDERNO").value = 1
    orders.update
    anyone had things like that

    Don't know if you're using J9 as your VM, but if so I had similar problems with other DLLs and the only way to make it see them (even if using java.library.path) was to place them in the bin directory under the path where you installed the VM in the device.
    Hope this helps.
    Regards

  • Oracle lite on iPAQ 3650

    I tried running CEsetup but it would not recognize my device. I assume this is because OL is processor dependent. If so, is there a patch to run lite on the ARM processor Compaq uses?

    Don't know if you're using J9 as your VM, but if so I had similar problems with other DLLs and the only way to make it see them (even if using java.library.path) was to place them in the bin directory under the path where you installed the VM in the device.
    Hope this helps.
    Regards

  • ODBC connections to Oracle 9i Lite

    i'm currently using oracle 9i Lite 5.0.2 database and Palm OS 5.1. can any body send me a sample code in JAVAwith which i can connect to Oracle Lite database in my palm from a PALM Application using ODBC.

    I am running the OBIEE software on Windows XP Professional on a laptop. An Oracle 10.2.0.1 EE database also resides on this machine.
    My TNSNAMES.ora file is located in one of my Oracle Homes but I have a system environment variable set for TNS_ADMIN. I am using the default listener installed with the preconfigured database, and I can connect to the database ok from the PC using SQL*Plus, TOAD etc. I have also tried connecting to the ODBC data source set up for this 10g db from within Excel with no problems.
    The System DSN entry called ORCLSH uses the driver 'Oracle in OraDB 10g_home1'. I have tried the ODBC driver with both a username entered and not. The TNS entry alias ORCLSH is used, which matches my TNSNAMES.ora file entry in the location designated by TNS_ADMIN. My db service name is ORCL. The parameters in the data connections are left are their defaults, i.e., enable result sets, enable query timeout, enable thread safety - all checked.
    The connection pool has been named ORCLSH too. I'm using Call interface ODBC 3.5, max connections 10, data source name ORCLSH. Shared login - checked, enable connection poolng - checked, use multithreaded connections - checked, execute queries asynchronously - checked, parameters supplied - checked (defaults).
    The writeback tab has been left alone (prefix TT, bulk insert buffer size 32, trx boundary 10).
    What other parameter details do you need to know, other that what details I have previously provided?
    Cheers,
    John

  • Form Server Connection to Oracle 8i Lite

    Hi
    I developed a web based application using form server and oracle 8i. In disconnected mode, I want to run same app on my laptop using form server and oracle 8i lite. But i m unable to connect to oracle 8i lite through form server. In normal mode, i m using microsoft odbc for connection with oracle lite, but it doesn't work with form server.
    Can any one help me, what should I do to make connection to 8i Lite from Form server ?
    thanks in advance
    null

    When using Oracle 8i Lite (4.0.x.x.x) with JDeveloper,
    you have to:
    1) If under JDK 1.1,
    1a) make sure that your %ORACLE_HOME%\bin directory is in your
    path.
    1b) Add OLITE40.JAR and OLJDK11.JAR to the IDEClassPath in
    JDEVELOPER.INI (remember, ya gotta have
    the stuff in your classpath for it to work!)
    2) If under JDK 1.2
    2a) Add your %ORACLE_HOME%\BIN directory to the JLP and SLP
    sections under [Ferrari]
    2b) Add OLITE40.JAR to the IDEClasspath.
    The reason for 2a is that under JDK 1.2, the call
    "System.loadlibrary(xxx)" does not use the path to look for the
    DLL. Only the system property "java.library.path" and
    "sun.boot.library.path" Each of these two settings must
    be set for it to work.
    -JDeveloper Team
    Joydip Homchowdhury (guest) wrote:
    : I have installed Oracle 8i Lite and JDeveloper 3.0 in my NT
    : machine. When I try to create a new connection using Oracle
    Lite
    : JDBC 4.0 driver and try testing the connection I get the
    : following message :
    : Unable to find driver oracle.lite.poljdbc.POLJDBCDriver
    : Do I need to install any other components or set any other
    : environment variables.
    : Thanks in advance for your answers
    : Joy
    null

  • Does j2me support jdbc for Palm Oracle Lite(8i/9i)

    I have a requirement to develop an application in Java for PALM OS with Oracle Lite 8i/9i connectivity. does j2me support jdbc for Palm Oracle Lite(8i/9i). Please help me to know what all java VM available in the market which have oracle connectivity(jdbc/odbc/whatever) for Oracle Lite for PALM.
    thanks
    dk

    Pleae some one reply, if j2me/kvm supports jdbc/odbc connectivity to oracle lite 9i/8i on palm
    thanks
    dk

  • Additional query... on Oracle Lite

    Dear All,
    I have a few additional queries on the question I posted before
    ADditional queries :
    ==================
    1) What software does lie on the Windows CE platform and how do we install it, because if we install Oracle lite for handheld devices it installs it on the PC?
    2) How can the replication be done with the Polite.odb on windows CE device in the simplest possible way?
    3) If I want to connect to this polite.odb how can i do that from my PC?
    Previous question :
    ==================
    I am working on a prototype between Oracle Lite and Oralce 8i database. I have managed to install oracle lite on PC and also manage the replication between the Oracle database and Oracle Lite database. I can also connect to the Oracle Lite database (It is a ODB file) through SQL plus. But I am having a few problems :
    1) While connecting to Oracle Lite database I get a message
    "Server not available or version too low for this feature" without any oracle error number. The versions are as follows : Oracle Open Client Adapter for ODBC 6.0.5.3.0
    Oracle Lite ORDBMS 4.0.0.2.0
    Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
    With the Partitioning and Java options
    PL/SQL Release 8.1.5.0.0 - Production
    To connect to Oracle Lite database, your give the userid/password@odbc:<<oracle lite dbname>>
    What can be the possible reasons?
    2) I tried to create a database link between the Oracle Lite database and Oracle database and when I try to fire a select on a table in Oracle Lite database I get an error
    "ORA-06401: NETCMN: invalid driver designator"
    so how dow we create a database link between these 2 databases?
    Thanks in advance
    Please send your mails to [email protected] and/or [email protected]
    Regards
    Sohil
    null

    Hi Aman,
    I was going through Oracle® Database Concepts 11g Release 2, Chapter 12 Logical Storage Structures (link below):
    http://docs.oracle.com/cd/E11882_01/server.112/e25789/logical.htm#i19599
    *Automatic Segment Space Management*
    The ASSM method uses bitmaps to manage space. Bitmaps provide the following advantages:
    •Simplified administration
    ASSM avoids the need to manually determine correct settings for many storage parameters. Only one crucial SQL parameter controls space allocation: PCTFREE. This parameter specifies the percentage of space to be reserved in a block for future updates (see "Percentage of Free Space in Data Blocks").
    •Increased concurrency
    Multiple transactions can search separate lists of free data blocks, thereby reducing contention and waits. For many standard workloads, application performance with ASSM is better than the performance of a well-tuned application that uses MSSM.
    •Dynamic affinity of space to instances in an Oracle Real Application Clusters (Oracle RAC) environment
    ASSM is more efficient and is the default for permanent, locally managed tablespaces.Regards,
    Ankit Rathi

  • [pol-5150] access violation in oracle lite database

    Hi,
    I am trying to connect to oraesb schema and getting the following error.
    [pol-5150] access violation.
    \\msql system/manager@jdbc:polite:orabesb is also failing.
    Basically I am trying to connect to SID oraesb in jdev.
    can someone help me on this.
    Regards
    Lalit

    Hi Lalit,
    I was also facing the same issue recently. However, I did some hit and trial and could finally resolve it.
    Here is what I have done. Please verify if it is of any help to you.
    Connection 1
    =====================================================
    Connection-> OliteESB
    Connection Type-> Oracle lite
    UserName->system
    password->any
    hostname->localhost
    JDBCPort->1531
    SID->oraesb
    Driver class oracle.lite.poljdbc.PLOJDBCDriver
    Classpath->C:\product\10.1.3.1\OracleAS_1\integration\esb\\lib\olite40.jar=====================================================
    Connection 2
    =====================================================
    Connection-> OliteBPEL
    Connection Type-> Oracle lite
    UserName->system
    password->manager
    hostname->localhost
    JDBCPort->1531
    SID->orabpel
    Driver class oracle.lite.poljdbc.PLOJDBCDriver
    Classpath->C:\product\10.1.3.1\OracleAS_1\bpel\lib\olite40.jar
    =====================================================
    You can use any of the directory above for setting the classpath for olite40.jar.
    If you create two connections as above it would take only one entry for the olite40.jar that was set most recently.
    I think it has something to do with the password and SID for the username.
    Thanks.

  • Jsf application with oracle lite webtogo

    hello...
    i have developed an application using jsf-adf bc technology in jdeveloper and then deployed it on mobile server.During development connected it to a oracle database .Before deployment changed the database connection to oracle lite using jdbc:polite:webtogo in application module configurations.But this application when opened in oracle lite client OC4J is not showing up.Please tell me how the connection has to be made to oracle lite database before deployment in jdeveloper so that the application works on the oracle lite OC4J client.

    Could u please tell me where to give the code u have mentioned.I have developed using jsf adf/bc and before deployment changed the application module configurations to oracle lite database connections.After i synced,i have got the application to the client.when i click on the link,Its giving me the following errors:
    500 Internal Server Error
    JBO-30003: The application pool (model.AppModuleLocal) failed to checkout an application module due to the following exception:oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.DMLException, msg=JBO-26061: Error while opening JDBC connection.     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1954)     at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2756)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)     at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:258)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:397)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:392)     at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1550)     at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1408)     at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99)     at oracle.adf.model.BindingContext.get(BindingContext.java:465)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)     at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)     at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127)     at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)     at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277)     at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296)     at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425)     at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)     at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44)     at oracle.adf.model.BindingContext.get(BindingContext.java:491)     at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:327)     at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:641)     at oracle.adf.model.servlet.ADFBindingFilter.isPageViewable(ADFBindingFilter.java:532)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:301)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)     at oracle.lite.web.CheckSessionFilter.doFilter(Unknown Source)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Unknown Source)

Maybe you are looking for

  • Solution Manager best practices about environments

    Hello, we intend to use Solution Manager 4.0. My question : I wonder whether we need to have a single instance a SM (production) or whether we need to have multiple instances (one development SM where developments and customizing will be performed an

  • Refund of security deposit

    I was recently speaking with someone about the security deposit ($400.00) that I needed to pay when I signed up with Verizon. That person mentioned that I have to basically stalk them to return the money, because if I don't they wont automatically cu

  • Oracle Portal 10g: how to list pages controlled by goup

    Hi All, When administering our Oracle Portal 10g, we are using groups to define who has Manage access to a given page. Is there any way to list what pages a particular group has Manage access to? Thanks for any assistance! Rob :)

  • Sync Iphone4 W/ IMac desktop

    Why do I have so much trouble syncing ICal from desktop to I phone 4?

  • Need a table schema query

    First of all, sorry if this is covered in another thread... the topic is very hard to search for... "table field query"? lol I need to make a query of Oracle system tables to report on the schema of a particular table; i.e.: Fieldname, datatype, leng