Oracle lite + Java on Win CE?

Hi All,
I have had a long hard look through the documentation, and am
still unclear on one thing.
Can I run Oracle Lite with a Java front end on a Win CE machine?
tia
Richard Summers
null

Hello you two,
I couldn4t get the connection with Java also, I tried for one month, so do you have a solution for this?
Second (and more urgent):
I've got the following message on my pocketPC during the synchronization with consolidatorclient :
"duplicate keys in unique/primary keys"
Do you know this error and do you know a solution??
Thanx for help
Eva Lepperhoff
Hello Mr. Summers,
Perhaps you are a bit surprised because you postet your question in 1999 but I have looked through nearly all entries about Oracle 8i Lite because I have the same Problem and I hope that you have some news after the past two years...
I am also trying to programm the OKAPI but there is a mystirious thing. In the documentation they are writing about a function called okInit. I couldn4t find this function in any of the headerfiles...
greatings from Germany
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Richard Summers ([email protected]):
Hi All,
I have had a long hard look through the documentation, and am
still unclear on one thing.
Can I run Oracle Lite with a Java front end on a Win CE machine?
tia
Richard Summers<HR></BLOCKQUOTE>
null

Similar Messages

  • Oracle lite Java Command to drop a device

    I want to know if there is a java method to drop a device from the Oracle lite repository. I don't find it in the java doc. If such method does not exist maybe I could delete the Device in the repository tables? Is someone did that before?
    Thank you
    Simon

    is that what you need?
    http://download.oracle.com/docs/cd/E12095_01/doc.10303/e12090/oracledb.htm#BCGGBGGC
    3.1 Deleting a Client Device
    If you want to delete a device, use the delete method from the Device class. To retrieve the Device object, use either the getDevice or getDeviceByName methods, as demonstrated below.
    If the device id is available, the following can be directly used:
    if (oracle.lite.resource.ResourceManager.getInstance() == null)
    oracle.lite.resource.ResourceManager.initialize(JDBC_URL, USER, PASSWORD);
    oracle.lite.resource.Device d =
    oracle.lite.resource.ResourceManager.getInstance().getDevice(deviceId);
    d.delete();
    If the device id is not available, then you can provide the device name, which is shown on the Mobile Manager UI in the oracle.lite.resource.User.getDeviceByName(deviceName) method. Once retrieved, use the delete method of the Device object as demonstrated above.

  • Oracle Lite java(?) conduit for Palm

    I had a lot of fun getting the Oracle Lite for handhelds install to work. Now I get the following error on hotsync:
    Unable to initialize threads: ,en
    Can't create Java VM
    OK Oracle with 2 message(s)
    Has anyone actually managed to get this to work? Any help will be appreciated.
    Thanx
    Vikas

    i recommend you ask questions about oracle lite on the oracle lite forum.
    you'll get a better and faster answer there...

  • Oracle Lite API to send commands

    Hi,
    Is anyone here ever used the Olite API to send commands to devices?
    When i send the command "Install apllication" from MobileManager to all devices from one platform. Sometimes, Mobilemanager hangs for hours and not all devices receive the command.
    So I would like to know if it can be done by Oracle Lite java API and if someone have somme examples on how to use oracle.lite.resource.dm.* Classes.
    Thanks
    JSET

    Here is an example from Metalink
    It throws an error in 10.3.0.1... but I have been told it works in 10.3.0.2
    import java.sql.*;
    import java.util.*;
    import oracle.lite.resource.ResourceManager;
    import java.util.Enumeration;
    import oracle.lite.resource.User;
    import oracle.lite.resource.Device;
    import oracle.lite.dm.DeviceManager;
    import oracle.lite.resource.dm.Command;
    import oracle.lite.dm.info.SyncLog;
    public class DeleteDeviceResourceManager {
    private static ResourceManager rm = null;
    private static DeviceManager dm = null;
    private static String[] userList = null;
    private static String[] cmdList = null;
    public static void main (String[] args) {
    String url = null;
    String user = null;
    String pwd = null;
    if (args.length != 3) {
    System.err.println("usage: java TestDeviceResourceManager <repo url> <repo user> <repo pwd>");
    System.exit(1);
    else {
    url = "jdbc:oracle:thin:@" + args[0];
    user = args[1];
    pwd = args[2];
    if (!initialize(url, user, pwd)) {
    System.exit(1);
    System.err.println("********** Testing DeviceResourceManager API's **********");
    /* System.err.println("Testing: getCommand");
    // testgetCommand();
    System.err.println("Testing: getCommands");
    // testgetCommands(); */
    System.err.println("Testing: getDevice");
    testgetDevice();
    System.err.println("Testing: getDeviceFiles");
    testgetDeviceFiles();
    System.err.println("Testing: getDeviceUser");
    testgetDeviceUser(); */
    private static boolean initialize(String url, String user, String pwd) {
    boolean init = true;
    String repoURL = user + "/" + pwd + "@" + url;
    try {
    ResourceManager.initialize(repoURL);
    rm = ResourceManager.getInstance();
    dm = DeviceManager.getInstance();
    Driver dr = (Driver)Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    DriverManager.registerDriver(dr);
    Connection conn = DriverManager.getConnection(url, user, pwd);
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("select name from users");
    List list = new ArrayList();
    int rowCnt = 0;
    while (rs.next()) {
    rowCnt++;
    list.add(rs.getString(1));
    rs.close();
    userList = new String[rowCnt];
    Iterator itr = list.iterator();
    int icnt = 0;
    while (itr.hasNext()) {
    userList[icnt++] = (String)itr.next();
    rs = stmt.executeQuery("select id from dm$all_commands");
    list = new ArrayList();
    rowCnt = 0;
    while (rs.next()) {
    rowCnt++;
    list.add(rs.getString(1));
    rs.close();
    cmdList = new String[rowCnt];
    itr = list.iterator();
    icnt = 0;
    while (itr.hasNext()) {
    cmdList[icnt++] = (String)itr.next();
    stmt.close();
    conn.close();
    init = true;
    catch (Throwable t) {
    init = false;
    System.err.println("Initialization failed");
    t.printStackTrace();
    return init;
    private static void testgetCommand() {
    for (int i=0; i<userList.length; i++) {
    String userName = userList;
    try {
    User usr = rm.getUser(userName);
    for (Enumeration e1 = usr.getDevices(); e1.hasMoreElements();) {
    Device dev = (Device)e1.nextElement();
    String devName = dev.getName();
    System.err.println(" Command List of Device: " + devName);
    for (int j=0; j<cmdList.length; j++) {
    Command cmd = dm.getCommand(cmdList[j]);
    String cmdString = cmd.getCommandString();
    System.err.println(" Command String: " + cmdString + " (Command ID: " + cmdList[j] + ")");
    System.err.println("");
    catch (Throwable t) {
    System.err.println(" Test Failed\n");
    t.printStackTrace();
    return;
    System.err.println(" Test Passed\n");
    private static void testgetCommands() {
    for (int i=0; i<userList.length; i++) {
    String userName = userList[i];
    try {
    User usr = rm.getUser(userName);
    for (Enumeration e1 = usr.getDevices(); e1.hasMoreElements();) {
    Device dev = (Device)e1.nextElement();
    String devName = dev.getName();
    Vector cmdList = dm.getCommands();
    System.err.println(" Command List of Device: " + devName);
    for (Enumeration e2 = cmdList.elements(); e2.hasMoreElements();) {
    System.err.println(" Command: " + e2.nextElement());
    System.err.println("");
    catch (Throwable t) {
    System.err.println(" Test Failed\n");
    t.printStackTrace();
    return;
    System.err.println(" Test Passed\n");
    private static void testgetDevice() {
    boolean testPassed = true;
    // for (int i=0; i<userList.length; i++) {
    //String userName = userList[i];
    String userName = "TEST";
    try {
    User usr = rm.getUser(userName);
    for (Enumeration e1 = usr.getDevices(); e1.hasMoreElements();) {
    Device dev1 = (Device)e1.nextElement();
    String devName1 = dev1.getName();
    String userGUID = usr.getGUID();
    String devType1 = dev1.getType();
    System.out.println(userName);
    //System.out.println(userGUID);
    System.out.println(devType1);
    System.out.println("TEST1");
    Device dev2 = dm.getDevice(userName, devType1);
    //Device dev2 = dm.getDevice(userGUID, "WIN32");
    //oracle.lite.resource.Device d=oracle.lite.resource.ResourceManager.getDevice(devId);
    //d.delete();
    dev1.delete();
    System.out.println("TEST2");
    // String devName2 = dev2.getName();
    //System.out.println(devName2);
    // String devType2 = dev2.getType();
    //System.out.println(devType2);
    String devId1 = dev1.getClientId();
    System.out.println(devId1);
    // String devId2 = dev2.getClientId();
    //System.out.println(devId2);
    /* System.err.println(" Device Details of device: " + devName1);
    System.err.println(" Device Type (using User.getDevices().getType()) : " + devType1);
    System.err.println(" Device ID (using User.getDevices().getClientId()) : " + devId1);
    System.err.println(" Device Details of device: " + devName2);
    System.err.println(" Device Type (using DeviceManager.getDevice().getType()) : " + devType2);
    System.err.println(" Device ID (using DeviceManager.getDevice().getClientId()): " + devId2);
    System.err.println(""); */
    System.out.println("TEST3");
    if (!devId1.equals(devId1)) {
    testPassed = false;
    catch (Throwable t) {
    System.err.println(" Test Failed\n");
    t.printStackTrace();
    return;
    if (testPassed) {
    System.err.println(" Test Passed\n");
    else {
    System.err.println(" Test Failed\n");
    private static void testgetDeviceFiles() {
    for (int i=0; i<userList.length; i++) {
    String userName = userList[i];
    try {
    User usr = rm.getUser(userName);
    for (Enumeration e1 = usr.getDevices(); e1.hasMoreElements();) {
    Device dev = (Device)e1.nextElement();
    String devName = dev.getName();
    Vector devfileList = dm.getDeviceFiles(dev);
    System.err.println(" Device Files of device: " + devName);
    for (Enumeration e2 = devfileList.elements(); e2.hasMoreElements();) {
    System.err.println(" Device File: " + e2.nextElement());
    System.err.println("");
    catch (Throwable t) {
    System.err.println(" Test Failed\n");
    t.printStackTrace();
    return;
    System.err.println(" Test Passed\n");
    private static void testgetDeviceUser() {
    boolean testPassed = true;
    for (int i=0; i<userList.length; i++) {
    String userName = userList[i];
    try {
    User usr1 = rm.getUser(userName);
    for (Enumeration e1 = usr1.getDevices(); e1.hasMoreElements();) {
    Device dev = (Device)e1.nextElement();
    String devName = dev.getName();
    SyncLog sl = dm.getSyncLog(dev);
    String devId = sl.getDeviceId();
    User usr2 = dm.getDeviceUser(devId);
    String usrName1 = usr1.getDisplayName();
    String usrName2 = usr2.getDisplayName();
    System.err.println(" Device User Name of device: " + devName + " (using User.getDisplayName()) : " + usrName1);
    System.err.println(" Device User Name of device: " + devName + " (using DeviceManager.getDeviceUser().getDisplayName()): " + usrName2);
    System.err.println("");
    if (!usrName1.equals(usrName2)) {
    testPassed = false;
    catch (Throwable t) {
    System.err.println(" Test Failed\n");
    t.printStackTrace();
    return;
    if (testPassed) {
    System.err.println(" Test Passed\n");
    else {
    System.err.println(" Test Failed\n");

  • A problem regarding set up of Oracle Lite 3.6.0.2.0 on Win 95, with JDK 1.1.8 &java 2

    A problem regarding set up of Oracle Lite 3.6.0.2.0 on Win 95, with JDK 1.1.8 and Java 2 SDK ( Ver 1.3 Beta)
    After the installation of Oracle Lite 3.6.0.2.0 on a laptop (with WIN 95 OS), When I run Oracle Lite Designer from start menu, I receive following error message :
    ====================================
    Invalid class name 'FILES\ORA95_2\LITE\DESIGNER\oldes.jar;C:\PROGRAM'
    usage: java [-options] class
    where options include:
    -help print out this message
    -version print out the build version
    -v -verbose turn on verbose mode
    -debug enable remote JAVA debugging
    -noasyncgc don't allow asynchronous garbage collection
    -verbosegc print a message when garbage collection occurs
    -noclassgc disable class garbage collection
    -ss<number> set the maximum native stack size for any thread
    -oss<number> set the maximum Java stack size for any thread
    -ms<number> set the initial Java heap size
    -mx<number> set the maximum Java heap size
    -classpath <directories separated by semicolons>
    list directories in which to look for classes
    -prof[:<file>] output profiling data to .\java.prof or .\<file>
    -verify verify all classes when read in
    -verifyremote verify classes read in over the network [default]
    -noverify do not verify any class
    -nojit disable JIT compiler
    Please make sure that JDK 1.1.4 (or greater) is installed in your machine and CLASSPATH is set properly. JAVA.EXE must be in the PATH.
    ====================================
    My ORACLE_HOME is c:\program files\ora95_2 and Oracle Lite is installed under the ORACLE_HOME in LITE\DESIGNER directory.
    JDK version is 1.1.8 which is greater than 1.1.4 installed in c:\program files\jdk1.1.8, My PATH, and CLASSPATH are set in AUTOEXEC.BAT as follows:
    set CLASSPATH=c:\Progra~1\jdk1.1.8\lib\classes.zip;c:\progra~1\ora95_2\lite\classes\olite36.jar;c:\progra~1\ora95_2\lite\designer\oldes.jar;c:\progra~1\ora95_2\lite\designer\swingall.j ar
    PATH=C:\Progra~1\Ora95_2\bin;.;c:\Progra~1\jdk1.1.8\lib;c:\Progra~1\jdk1.1.8\bin;C:\Progra~1\Ora95_2\lite\Designer;C:\WIN95;C:\WIN95\COMMAND;C:\UTIL
    And, I can run JAVA.EXE from any directory on command prompt.
    With JAVA 2 SDK (ver 1.3 Beta) instead of JDK 1.1.8 I'm getting a different Error message as follows:
    =============================
    java.lang.NoClassFoundError: 'FILES\ORA95_2\LITE\DESIGNER\oldes.jar;C:\PROGRAM'
    Please make sure that JDK 1.1.4 (or greater) is installed in your machine and CLASSPATH is set properly. JAVA.EXE must be in the PATH.
    ==============================
    the PATH and CLASSPATH were set accordingly, as with JDK1.1.8, and there was no classes.zip in classpath
    also the class file or the jar file looks weird or wrapped in the error message : 'FILES\ORA95_2\LITE\DESIGNER\oldes.jar;C:\PROGRAM'
    Another interesting thing I noticed is if I run oldes.exe from Installation CD, the Oracle Lite Designer runs fine, and without error, I'm able to modify tables in the database of my laptop also.
    Could someone shade some light on what am I doing wrong here ?
    Thanks for help in advance .
    Regards
    Viral
    null

    On 07/20/2015 06:35 AM, Itzhak Hovav wrote:
    > hi
    > [snip]
    > [root@p22 eclipse]# cat eclipse.ini -startup
    > plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
    > --launcher.library
    > plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807
    >
    > -showsplash
    > org.eclipse.platform
    > --launcher.XXMaxPermSize
    > 256m
    > --launcher.defaultAction
    > openFile
    > -vmargs
    > -Xms40m
    > -Xmx512m
    > [snip]
    Try this: http://wiki.eclipse.org/Eclipse.ini. You should have read the
    sticky posts at forum's top for getting started help.

  • Oracle Lite Developement on EPOC , Win CE

    Hi,
    I am working on Oracle Lite , its working perfectly on the Windows, synchronizing etc. I deal with Mobile application developement with EPOC , Win CE on Psion Teklogix NetPad.
    Is any one working on EPOC or Win CE Device, trying to Deploy Java Applets , Servlets or JSP.
    It will be gr8 to share experiences.
    Thanks
    Bye
    Anand
    [email protected]

    Oracle 5.0.10 does not provide an x.86 emulator for CE.nt devices. Eventually this will be an Oracle tool that will be an extension of .net.
    Cheers,
    Phil

  • URGENT:Oracle Lite + Win CE + pJava + Replication

    We are trying to run a personal Java application on the Windows CE device and replicate the data using the consolidator.
    1) How do we access the Oracle Lite Database on the Win CE using Personal Java.
    2) How do we replicate/consolidate the data from Win CE to Oracle Lite on Desktop. (other than HTTP)
    Thanks in advance
    Suresh

    Hi,
    PPC 2003 != Win CE 4.2
    Pocket PC 2003 runs 'on top of' Win CE 4.2, and therefore PPC 2003 API's cannot be used on a Win CE 4.2 device. What processor is your scanner using? If it's not the ARM processor you might need to use a different Oracle 9iLite runtime on it.
    Check out this post on the NETCF newsgroup:
    http://www.google.com/groups?hl=en&lr=&ie=UTF-8&threadm=0b6301c3c3e9%2481358330%24a401280a%40phx.gbl&rnum=1&prev=/groups%3Fas_q%3Ddifference%2520pocket%2520pc%25202003%2520win%2520ce%25204.2%26safe%3Dimages%26ie%3DUTF-8%26as_ugroup%3D*compactframework*%26lr%3D%26hl%3Den
    Good Luck.

  • Oracle Lite and Java 1.3

    Some preliminary testing of Java 1.3 against Oracle Lite 8.1.5 causes an fatal crash that won't allow me to debug through and suspends both the VM and my debugger/IDE for Java.
    Can anyone confirm if it is possible to run Olite and Java 1.3? Same code works great in OLite and Java 1.2.2, and crash doesn't seem to be OS specific (tested under NT and 2000).
    Cheers, DJ

    When you put your code in a try block and print the exception, what does it say:
    String driver = getDriverFromConfigurationFile();
    try
    Class.forName(driver);
    catch(ClassNotFoundException cnfe)
    System.err.println(cnfe);
    Second option is to use DataSource instead.

  • Password Probs - Oracle 8 Navigator & Oracle Lite Designer

    I have read the thread entitled "Oracle Lite Designer -
    password?", but none of the suggestions have worked.
    Whether I try to run Oracle 8 Navigator or Oracle Lite Design,
    at some point I get an alert box that prompts "Please provide
    a database password?"
    I have looked through numerous sources and find nothing on
    this. Everything I try (that seems logical) for a password
    fails.
    Can anyone shed any light on this?
    I have the following installed:
    Windows 98
    Oracle 8i Lite v4.0.0.1.0
    Java 2 SDK, Standard Edition v1.2.2 for Windows 98/95/NT
    Java HotSpot Performance Engine v1.0.1 for Window 98/95/NT
    My PATH and CLASSPATH are set as follows in AUTOEXEC.BAT:
    set CLASSPATH=C:\orawin95\LITE\CLASSES\OLITE40.JAR
    PATH C:\jdk1.2.2\bin;C:\jdk1.2.2\jre\bin\hotspot;
    C:\orawin95\bin;%PATH%
    null

    Andrew (guest) wrote:
    : When I startup the Oracle Lite Designer app, it prompts me for
    a
    : password. It doesn't accept any valid user password or
    encrypted
    : password I supply. It works this way for both the default
    polite
    : database and any new one I try to create. Anybody run into
    this
    : issue or have a solution?
    : Also what an example of the syntax for a jdbc connection in
    Lite
    : Designer? When I enter something in that is obviously wrong it
    : doesn't give me any indication of what happened.
    : -Andrew
    Hello,
    I ran into that problem, too. My solution was to uninstall all
    Sun Java parts (JDK and JRE) and reinstall JDK1.2.2
    ("jdk1_2_2-win.exe")from scratch. My CLASSPATH includes only the
    standard classes you can find after a normal OLite4-Installation
    (see OLite4 installation notes or send my an email). And check
    your environment variables for references to old Java parts.
    Now Lite Designer runs with POLITE.odb and my own databases and
    yes - it is slow, but it is Java, so this should explain
    everything.
    What I do not know is where that password dialog came from.
    Sometimes it reappears, but not in my own databases.
    I hope that this will help you.
    Bye
    Martin Hanff.
    null

  • 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

  • How to cancel a transaction in Oracle Lite 10g R3

    Hi,
    I have a publication with 7 publication items (updatables), Server wins in any conclict.
    I made some changes in some records of the 7 tables of my oracle lite database.
    I synchronize the changes, without any error messages, But I cannot find those changes in the tables in my oracle database (9i).
    So, I check in the Mobile Manager, in the Data Synchronization/Repository/Input Queue.
    I find the transaction #203 with all the publication items.
    I also find an error in the "Error queue", It seems like there was a conclict in one of my publication items. So I choose the option "Take value from server", then the error disapear from the "Error queue". However, the transaction stay in the "Input queue".
    I made other changes to the tables in the database lite, and then synchronize. But It seems like nothing happens, there isn´t any other transaction in the "input queue", and I cannot fin all the changes I made in my database (9i).
    Can anyone help me????
    Regards, Santiago

    I found this messagein the MGP History User
    Applied Record     Counts:
    Insert Count     = 3
    Update Count     = 6
    Delete Count     = 0
    Applied PubItems:
    TECNICO
    SUSCRIPTOR
    LISTA_MATERIALES
    LIQCLI
    VALORAC_ACTIVIDADES_OPE
    CARGA_DEMANDADA
    DESCSOL
    TECNICO
    SUSCRIPTOR
    LISTA_MATERIALES
    LIQCLI
    VALORAC_ACTIVIDADES_OPE
    CARGA_DEMANDADA
    DESCSOL
    TECNICO
    SUSCRIPTOR
    LISTA_MATERIALES
    LIQCLI
    VALORAC_ACTIVIDADES_OPE
    CARGA_DEMANDADA
    DESCSOL
    Compose Error:
    java.lang.Exception: MGP apply_before_compose aborted and compose postponed for SGARCIA as apply will generate sync errors
         at oracle.lite.sync.Consolidator$O8Server.fastPush(Unknown Source)
         at oracle.lite.sync.MGP$MGPG.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:534)
    /*********************************************/

  • Java on Win CE

    Hi,
    I want to know if I can run my Java program on Win CE. Is there a runtime environment for this operating system that could be installed into the Win CE device?
    I couldn't find enough resources or articles for that.
    Can someone at least point me to correct stuff?
    I dont know what do I need to write to clarify my problem, so I need your help.
    Thanks in advance,
    Ali

    Hello you two,
    I couldn4t get the connection with Java also, I tried for one month, so do you have a solution for this?
    Second (and more urgent):
    I've got the following message on my pocketPC during the synchronization with consolidatorclient :
    "duplicate keys in unique/primary keys"
    Do you know this error and do you know a solution??
    Thanx for help
    Eva Lepperhoff
    Hello Mr. Summers,
    Perhaps you are a bit surprised because you postet your question in 1999 but I have looked through nearly all entries about Oracle 8i Lite because I have the same Problem and I hope that you have some news after the past two years...
    I am also trying to programm the OKAPI but there is a mystirious thing. In the documentation they are writing about a function called okInit. I couldn4t find this function in any of the headerfiles...
    greatings from Germany
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Richard Summers ([email protected]):
    Hi All,
    I have had a long hard look through the documentation, and am
    still unclear on one thing.
    Can I run Oracle Lite with a Java front end on a Win CE machine?
    tia
    Richard Summers<HR></BLOCKQUOTE>
    null

  • Oracle Lite Designer

    I have Oracle lite installed in my machine.it works fine with
    navigator and sqlplus.
    When I try to run oracle lite designor it asks for password.
    can any one help me find the default password for the designor
    null

    Andrew (guest) wrote:
    : When I startup the Oracle Lite Designer app, it prompts me for
    a
    : password. It doesn't accept any valid user password or
    encrypted
    : password I supply. It works this way for both the default
    polite
    : database and any new one I try to create. Anybody run into
    this
    : issue or have a solution?
    : Also what an example of the syntax for a jdbc connection in
    Lite
    : Designer? When I enter something in that is obviously wrong it
    : doesn't give me any indication of what happened.
    : -Andrew
    Hello,
    I ran into that problem, too. My solution was to uninstall all
    Sun Java parts (JDK and JRE) and reinstall JDK1.2.2
    ("jdk1_2_2-win.exe")from scratch. My CLASSPATH includes only the
    standard classes you can find after a normal OLite4-Installation
    (see OLite4 installation notes or send my an email). And check
    your environment variables for references to old Java parts.
    Now Lite Designer runs with POLITE.odb and my own databases and
    yes - it is slow, but it is Java, so this should explain
    everything.
    What I do not know is where that password dialog came from.
    Sometimes it reappears, but not in my own databases.
    I hope that this will help you.
    Bye
    Martin Hanff.
    null

  • Oracle Lite ( Windows CE version ) on H/PC

    Hi to all !
    Which version of Oracle Lite for Windows CE supports Java stored procedures and
    triggers and the Oracle Lite JAC and JDBC interfaces on H/PC? I have version 3.6 and 4.0.1 but this versions don't support
    JAC, JDBC interfaces, Java stored procedures and triggers ( this is written in documentation ).
    I urgently need version of Oracle Lite for Windows CE on H/PC which
    mostly supports JDBC interface because I've developed an application for
    Oracle Lite in JDeveloper with
    JDBC interface and I intend to transfer this application on H/PC ( Velo
    Phillips ) with Widows CE 2.0 operating system.
    Does such version of Oracle Lite for Windows CE which supports JDBC
    interface exist at all?
    Please help me.
    Thank you in advance.
    null

    I want to run Oracle lite on ARM based WINDOWS CE platform,For this it requires jdk1.1.8 version minimum or higher.Is it available to download this jdk version seperately for WIN CE? I searched in the Net but i didnt get jdk seperately made for ARM windows ce platform.
    Please help me to sort out this problem,any kind of support is appreciated.

  • Error starting Oracle BI Java Host service

    Hi,
    We are facing some issue while starting the Oracle BI Java Host service. It throws the following error.
    This application was working properly till some 2 days back and suddenly it has started giving this error. We have not updated any software. The host machine is Win XP.
    Sep 27, 2011 12:08:15 PM Main main
    INFO: Javahost config file(s): C:\OracleBI\web\javahost\config\config.xml. Xpath:.
    Sep 27, 2011 12:08:16 PM ApplicationImpl createEnvironment
    INFO: Config environment properties:
    presentation.coreconfigdir=C:\OracleBI\web\config
    javahostdir=C:\OracleBI\web\javahost
    rootdir=C:\OracleBI
    presentation.dataconfigdir=C:\OracleBIData\web\config
    presentation.rootdir=C:\OracleBI\web
    tempdir=C:\OracleBIData\tmp
    presentation.cordaroot=C:\OracleBI\Corda50
    Sep 27, 2011 12:08:16 PM ApplicationImpl init
    SEVERE: java.io.IOException: Unable to establish loopback connection
         at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:106)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.nio.ch.PipeImpl.<init>(PipeImpl.java:122)
         at sun.nio.ch.SelectorProviderImpl.openPipe(SelectorProviderImpl.java:27)
         at java.nio.channels.Pipe.open(Pipe.java:133)
         at sun.nio.ch.WindowsSelectorImpl.<init>(WindowsSelectorImpl.java:104)
         at sun.nio.ch.WindowsSelectorProvider.openSelector(WindowsSelectorProvider.java:26)
         at com.siebel.analytics.javahost.Listener.<init>(Listener.java:53)
         at com.siebel.analytics.javahost.ApplicationImpl.init(ApplicationImpl.java:121)
         at com.siebel.analytics.javahost.standalone.Main.init(Main.java:127)
    Caused by: java.net.SocketException: No buffer space available (maximum connections reached?): bind
         at sun.nio.ch.Net.bind(Native Method)
         at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:119)
         at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:59)
         at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:52)
         at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:72)
         ... 9 more
    Request some input to resolve this error.
    Thanks in advance.

    @Deepak,
    Following are the log contents
    Sep 27, 2011 12:08:15 PM Main main
    INFO: Javahost config file(s): C:\OracleBI\web\javahost\config\config.xml. Xpath:.
    Sep 27, 2011 12:08:16 PM ApplicationImpl createEnvironment
    INFO: Config environment properties:
    presentation.coreconfigdir=C:\OracleBI\web\config
    javahostdir=C:\OracleBI\web\javahost
    rootdir=C:\OracleBI
    presentation.dataconfigdir=C:\OracleBIData\web\config
    presentation.rootdir=C:\OracleBI\web
    tempdir=C:\OracleBIData\tmp
    presentation.cordaroot=C:\OracleBI\Corda50
    Sep 27, 2011 12:08:16 PM ApplicationImpl init
    SEVERE: java.io.IOException: Unable to establish loopback connection
    at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:106)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.nio.ch.PipeImpl.<init>(PipeImpl.java:122)
    at sun.nio.ch.SelectorProviderImpl.openPipe(SelectorProviderImpl.java:27)
    at java.nio.channels.Pipe.open(Pipe.java:133)
    at sun.nio.ch.WindowsSelectorImpl.<init>(WindowsSelectorImpl.java:104)
    at sun.nio.ch.WindowsSelectorProvider.openSelector(WindowsSelectorProvider.java:26)
    at com.siebel.analytics.javahost.Listener.<init>(Listener.java:53)
    at com.siebel.analytics.javahost.ApplicationImpl.init(ApplicationImpl.java:121)
    at com.siebel.analytics.javahost.standalone.Main.init(Main.java:127)
    Caused by: java.net.SocketException: No buffer space available (maximum connections reached?): bind
    at sun.nio.ch.Net.bind(Native Method)
    at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:119)
    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:59)
    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:52)
    at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:72)
    It also mentions about the buffer space....could that be a reason for this.
    By the way, I forgot to mention, this deployment is in a VMWare (with XP as OS) which is hosted on Windows Server.

Maybe you are looking for

  • Why isn't itunes loading? The "error" report keeps coming up and when I press "Don't send" it just won't load . PLEASE HELPPPP !

    I jsut downloaded the newst iTunes. When ever I ppress the icon or go through the list of programs to open It, I click on it then the "Error report" comes up. Everytime I try to open it the "error report" comes up and the choices are "Send error repo

  • Maven scripts for deploying WAR into Weblogic

    Hello Folks, I would need some help in deploying EAR/WAR into weblogic server. I already have maven scripts for building but not for deploying. your help is appreciated. Thanks.

  • Iphone 5.1.1 don't vibrate

    It happened a few months ago since I updated my iphone to 5.1.1. I had turn on the vibrate in the settings, both two selections. But it still doesn't work.

  • [SOLVED] HOW to install CATALYST drivers?

    I decided that its time for me to install some catalyst drivers for my ATI RADEON 3200 card, I've found them in AUR, after I made a package I tried to install but this is what I saw: pacman -U catalyst-utils-11.5-2-x86_64.pkg.tar.xz resolving depende

  • Need some info

    I bought the turtle beach 5. headset. It has an option for an optical in. The optical out on my laptop took a dive. I am wanting to buy the x-fi surround pro thx. It says it has dolby digital live. Does this work in games, or just dvd. Will I be able