Oracle lite mobile cliet setup

hi
i have installed java 1.5 update 15 in windows xp service pack 2 system. Then installed Fresh client set up and data download of oracle lite 10g R3,after installing i got a shortcut in my deskstop of web-to-go.This web-to-go is not opening and showing an error "cannot display the content".
but i went to E:\mobileclient\bin in command prompt and typed "webtogo -d"... now it works but when i close the command prompt again my we-to-go is not working...then i started the service od webtogo. now it is working fine. what does the "webtogo -d" command is doing??? plz anyone tell me.....
Thanks in advance
Edited by: 793097 on Sep 8, 2010 12:50 AM

currently only the client 5.0.2.10 database runs on Linux Advanced Server 3.0, but not sync tools. What runs on Lunix is the Mobile Server. In future releases the full Lite stack will run on Lunix.

Similar Messages

  • How to install the oracle lite mobile server?

    hi,every one!
    I follow the wizard of the oracle lite mobile server,then
    pop the window let me input the "host name""port"and "net server name",I have install oracle 9i,and establish a database named "oradb",establish an server named"oradb",the service can be listened and the port is "1521",but in the installation when i input the up numbers, it
    tells me that "invalid server name",how can i do?
    somebody that do me a favor tell me how to install the oracle 9i lite mobile server,it must be preciated!

    Andy,
    It sounds like you are not properly connecting to the back end Oracle instance when Lite attempts to install the Mobile Server Repository.
    Before attempting a re-install, why don't you try connecting to the same instance using SQL/Plus with the a connect string specifying hostname:1521:SID. If you are not able to connect you need to determine why.
    TNX,
    Phil

  • Oracle Lite Mobile Server Standalone Version

    We are planning to run the Mobile Server in the DMZ and wanted to run the Mobile Server as standalone on it's own box. I found in the documentation that Oracle does not recommend to run the standalone version in production. Oracle recommends that the production use the Oracle Application Server for the middle-tier.
    Does anyone know why Oracle recommends we don't use Mobile server as standalone in a production environment?
    Message was edited by:
    Javier Ruiz

    I have used the stand-alone as a production solution with 1000 users synching approx 2 GB a day and users databases having databases ranging from 50 MB to 1 GB.
    I am deploying to app server and here is what I have found to be better.
    * <strike>better</strike> easier management of the JVM. Actually, maintenance in general is much easier. I like the performance monitors that come with application server. Easier then logging into a telnet session and using mpstat and prstat.
    Does it limit you going stand-alone? No.
    But I would recommend that the bigger the system, the more robust your application server should be. Both in hardware and software (webcache, app server)

  • Help with oracle lite

    Hi
    I am trying to develop applications for palm which takes the data from PDA and then keeps it in to the oracle server.
    Can anyone help on what all i need to install on my local machine to start developing applications ?
    Please help

    hi..
    u need the following -
    a) Oracle lite mobile sdk.
    b) metrowerks codewarrio / pilrc tools
    u also need to have the oracle lite mobile server installed either locally or on another machine which u can access.
    refer to the the oracle lite doc on developing apps for the palm for specific setup instructions/
    Rohit.

  • Oracle Lite licensing

    I would like to know if buying oracle lite licenses for our remote users than I have to pay the same number of licenses for Enterprise database server which synchronizes data with Olite via Mobile Server. For example : With 1000 remote users (with 1000 Olite licenses) have I to pay also unlimited enterprise database license, or I can pay only one enterprise license or nothing ?
    Thanks for the attention.

    Hi,
    Related to Oracle Lite you need to license:
    - the Oracle Lite Mobile Server
    - the Oracle Lite client (for each device)
    If you want to have an aproach check any online store of Oracle, but anyway you will have to contact an Oracle Partner for licensing, discounts, etc... if your partner know about mobile ;-)
    https://shop.oracle.com/pls/ostore/f?p=ostore:product:4500444252482991::NO:RP,3:P3_LPI:4509478177681805719950
    https://shop.oracle.com/pls/ostore/f?p=ostore:product:4500444252482991::NO:RP,3:P3_LPI:4509426259321805719944
    I hope it helps you
    Regards,
    T.

  • Oracle Database Mobile Server 11g is out

    Oracle Database Mobile Server 11g is released, please post your comments when you get hands on it
    http://www.oracle.com/technetwork/database/database-mobile-server/overview/index.html
    New Features in 11g
    * Support for Java SE, including SE Embedded
    * Device Management for Android platforms
    * Automatic sync for Android and Blackberry platforms
    * Support for Oracle Glassfish
    * Support for Java 1.6
    * Better integration with Oracle Berkeley DB, including encryption support

    In the release notes for 11g, I find this:
    "The Oracle Lite Mobile Client is desupported in this release. The Sync Control APIs for the Oracle Lite Mobile Client are still provided in this guide, but will be removed when the Oracle Lite Mobile Client is fully deprecated.
    Supported mobile clients include the Berkeley DB and SQLite Mobile Clients.
    I am not sure I understand. Will I still be able to use Olite db with the Sync Control API for Oracle lite (like before), or does it mean that the sync control APIs now work only with SQLite and BDB? We are in the process of porting our app from WM6.1 to Android. If we install the latest Mobile server, will I have to change my WM6.1 app so that it supports SQLite or BDB?
    I think the latter is the case, but I became unsure when I read the release note.

  • Preventing trigger executing on oracle lite

    I am using Mobile Server and Oracle Lite to provide mobile copies of the database to a small set of users. We have an application that some users use to update data on the mobile databases, and the same application is used by other users who are permanently connected to the main central database. Mobile users will synchronize with the central database whenever they return to their home office.
    On both they central Oracle database and the Oracle Lite mobile databases there are several triggers written for functions such as creating unique primary keys from sequences and updating a "last updated" field on each table (plus a few more complicated scenarios).
    My problem is that I want these triggers to execute only on inserts, updates and deletes from actions initiated directly on the mobile workstation. I do NOT want these same triggers to be executed on either the central or mobile databases as a result of a synchronization with the central Oracle database.
    How do I prevent triggers from executing on the oracle lite mobile database as a result of table data changes from a synchronization with the central database?
    Edited by: user10300540 on Dec 22, 2009 3:58 PM

    We do use sequences to populate primary key ID values, but do not use triggers to set these (even on the server applications) due to the problems associated with foriegn key matching. Instead the sequences tend to be selected within the application and then used explicitly in the insert statements.
    On the clients (PDAs and laptops in outr case) we define sequences within the mobile publications (to ensure that the values are unique to each client - you do not mention how you create the client sequences, but you need to ensure that the range is different for each client otherwise you will get data overwritten), and then all insert statements are in the form insert into table (id,...) values (id_seq.nextval,..). I can see however that this would require more change to you application code to achieve this.
    It is possible to set triggers on the server end to populate/change the id values, but this can cause problems if the data is returned to the client as you will end up with two records.
    Our client app is java based and so sets up a SQL string that is executed by the execute statement methods. This could be wrapped with a method that sets the id values, but this could be a bit cumbersome
    NOTE When we define the sequences in the mobile applications we always set a start point considerably higher than the equivilent range on the server (start at 500 million) with a large range so that in practice they do not need to be reset. The range difference is also useful in that it makes it easy to identify client created data.

  • Versioned tables and Oracle Lite

    Is it possible to use versioned tables in Oracle Lite snapshots?
    I would like to use both these features in my application:
    Workspace Manager - history and long transaction support
    Oracle Lite/Mobile server - support and synchronization in mobile clients.
    Thanks
    Ondrej

    Again not sure if this will be useful for you. You can put all the data back into a workspace from Olite and then diff that workspace with its parent workspace. That will tell you all the rows that have been changed in the child workspace.
    So, the way I see this work, extract data from a workspace onto Olite. Make changes to the extracted data. And then merge back ALL the extracted data (because you do not know what has been changed). And then rely on workspace manager diff view to tell you what has changed.
    Does this help?
    regards
    Arun

  • Error when installing Oracle Lite for Mobile Field Service Laptop

    Hi,
    I am facing a strange problem when installing Mobile Field Service Laptop agent "Oracle Lite" on my laptop.
    When I run the setup, it asks me username and password, after entering the information, when I proceed, I see setup window which displays below messages
    "Authenticating with server... "
    Please wait. This may take several minutes ...
    Then it hangs for several minutes, approx 5 to 10 mins, and then gives message
    "Could not connect to server: HTTP/1.0 502 Bad Gateway"
    I am not able to proceed with setup.
    But none of my other colleagues are facing this issue, even though the network, proxy settings and java version are same.
    Any idea about this error?
    Regards,
    Mohammed

    I thought polite.ini us required....how r u using MFS without polite.ini?

  • Oracle 10g Lite Mobile Devices

    Hi,
    1. Does Oracle 10g lite Support Arabic?
    2. Does Oracle 10g lite Support Windows Mobile 5.0, PPC 2005?
    3. On a PPC 2003 OS the sync worked well but after it finished the device manager started to register the device on the mobile server, there is an error raised that has invalid error code and as description 'Insufficient information to proceed',
    Help Me In That Please?

    Hi,
    ad 1: Oracle Lite should support all the charsets the "big" Oracle server supports - even unicode afaik.
    ad 2: yes, OLite supports WM5 (you have to install a patchset from metalink to enable WM5 support - try to search previous threads)
    ad 3: what is the regional settings of your device? if it's some arabic culture which is not present in default OLite installation, you'll have to make some changes into Oracle Lite system tables to support your platform. In OL10g the "platform" is defined as a combination of OS type, CPU type and current OS culture settings - for example something like "WM5 + XScale CPU + czech culture". I used something like this to replace all the japanese platforms with our language to enable support for devices wit czech locale settings:
    UPDATE mobileadmin.dm$all_platforms
    SET NAME = REPLACE(NAME, ';JA', ';CS'),
    TYPE = REPLACE(TYPE, '_JA_', '_CS_')
    WHERE NAME LIKE '%;JA';
    INSERT INTO mobileadmin.DM$LANG_MAP
    (LANG_ID, LANG_NAME, LANG_CODE, LANG_REG, CODE_PAGE)
    VALUES
    ('CS', 'Czech', 'CS', 'CZ', '1250');
    you'll than probably also need to copy some files from default US locale to your new locale directory:
    {ora10gLiteR2}\mobile_oc4j\j2ee\mobileserver\applications\mobileserver\setup\us => {ora10gLiteR2}\mobile_oc4j\j2ee\mobileserver\applications\mobileserver\setup\{your_locale}
    than the device should be able to get registered...

  • Can't patch mobile 6 client package to Oracle Lite 10.3

    hi,
    I installed Oracle lite 10.3 successfully, and try to install oracle client patch for mobile 6. I do this according to the readme,but failed,the message says,
    Oracle Interim Patch Installer version 1.0.0.0.57
    Copyright (c) 2007 Oracle Corporation. All Rights Reserved..
    We recommend you refer to the OPatch documentation under
    OPatch/docs for usage reference. We also recommend using
    the latest OPatch version. For the latest OPatch version
    and other support related issues, please refer to document
    293369.1 which is viewable from metalink.oracle.com
    Oracle Home : d:\olite10g_1
    Oracle Home Inventory : D:\olite10g_1\inventory
    Central Inventory : C:\Program Files\oracle\inventory
    from : N/A
    OUI location : D:\olite10g_1\oui
    OUI shared library : D:\olite10g_1\oui\lib\win32\oraInstaller.dll
    Java location : "D:\olite10g_1\jre\1.4.2\bin\java.exe"
    Log file location : d:\olite10g_1/.patch_storage/<patch ID>/*.log
    Creating log file "D:\olite10g_1\.patch_storage\6344826\Apply_6344826_03-10-2008_10-13-37.log"
    ERROR: OPatch failed during pre-reqs check.
    any help? thank u

    Ok, I finally found it.....
    Oracle Database Lite Administration and Deployment Guide Release 10.3 (E12089-02)
    7.4.3.1 Enable a Platform for Your Mobile Client
    Not all of the possible platforms are enabled on the Mobile client setup screen. To enable a platform for your client device, do the following:
    On the Mobile Devices screen, click Platforms.
    On the Platforms screen in the Search pulldowns, select the language and either Disabled or All and click Go.
    Select the platform name that you want to enable.
    Enable the device by selecting Yes in the Enable pulldown.
    Click OK. The device is now enabled and will be visible in the client setup screen.
    =====================================================================
    I was on the Platform screen before, but missed the "Enabled" setting under Search.  I looked at the screen and saw only the enabled list, and assumed this was 'all' of the platforms....
    Once I switched the search setting from "Enabled" to "All" I saw my disabled SQLite options.
    7.4.3.1 was under 7.4.3 Extend or Create a Custom Platform.  Wasn't trying to do either of these, so never looked under there before.  Only ran into it when I was going to attempt to create a custom SQLite platform.
    I thought it was just a bad setting somewhere....  Just couldn't find where....
    Thanks for all who looked at my question and userBDBDMS-Oracle for trying to help.

  • How to install Oracle Lite ODBC driver without connecting the mobile server

    My Oracle Lite version is 10g R3.
    I am using branch office version application.
    I wanted to connect oracle client database(.odb file) via Lite DSN in a windows XP machine without installing the client in that device.
    Some of my users wanted to access the client database from backend which requires a DSN entry in that device.Oracle Lite ODBC gets registered in the device only when we do a setup from the mobile server or if Oracle 10g Lite MDK is installed.
    I do not want either of this to be done in my user PC. I wanted a ODBC utility which will register oracle Lite ODBC Driver (Normal & Cleint) in the user PC so that i can manually create and configure the DSN.
    Does anyone have a solution for this?
    Regards,
    Ashok Kumar.G

    Dear Sir,
    Yes, you can find the Driver here
    http://www.oracle.com/technology/software/tech/windows/odbc/index.html

  • Oracle 9i Lite Mobile Server deploye Problem As Apache Module

    I am trying to get the Oracle9i Lite Mobile Server run as a Module under Apache.
    my platform is Linux 7.2, which of course is documented as an option.
    I managed to install the mobile server and the following document is
    the latest from ORACLE site. and is very useful.
    http://technet.oracle.com/docs/products/lite/doc_library/release501/readme.htm#new
    I have one problem to overcome the module to load in Apache
    'libwtgapach.so'
    is the required shared library.
    This does not load due to following error,
    Cannot load /var/ORACLE/mobile/server/bin/libwtgapach.so into server:
    /var/ORACLE/mobile/server/bin/libwtgapach.so: undefined symbol:
    ap_global_ctx
    All the libraries can be resolved here is the ldd ( link map )
    ldd libwtgapach.so
    liborafc.so => /var/ORACLE/mobile/server/bin/liborafc.so (0x40007000)
    libjvm.so => /var/ORACLE/jdk/jre/lib/i386/classic/libjvm.so
    (0x4002a000) libhpi.so =>
    /var/ORACLE/jdk/jre/lib/i386/green_threads/libhpi.so (0x400bd000)
    libdl.so.2 => /lib/libdl.so.2 (0x400dd000)
    libpthread.so.0 => /lib/i686/libpthread.so.0 (0x400e1000)
    libstdc++-libc6.1-1.so.2 => /usr/lib/libstdc++-libc6.1-1.so.2
    (0x400f7000)
    libm.so.6 => /lib/i686/libm.so.6 (0x40139000)
    libc.so.6 => /lib/i686/libc.so.6 (0x4015c000)
    libnsl.so.1 => /lib/libnsl.so.1 (0x40297000)
    /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
    I found this post explaining to recompile Apache
    This actually means you installed mod_ssl as a DSO, but
    . without rebuilding Apache with EAPI. Because EAPI is a
    requirement for mod_ssl, you need an extra patched Apache
    (containing the EAPI patches) and you have to build this
    Apache with EAPI enabled (explicitly specify --enable-rule=EAPI
    at the APACI command line).I recompiled apache with the following
    ./configure --prefix=/usr/local/ssl-apache/httpd-2.0.39
    --enable-rule=EAPI ; make ; make install
    I still get the same error when I try to load the module.Am I missing
    something?
    Any help is deeply appreciated.
    -- ajith

    Scott, I have yet to get WTG server to work as an NT service when loaded as an Apache module.
    We've had to load it into a non-service based Apache server (one that runs from the command line in a MS-DOS prompt window). This is on XP Pro.
    We've switched to running our WTG server on Linux.

  • Oracle 9i Lite Mobile

    Where can I find the API documentation for
    oracle.mobile.admin.ResourceManager ?
    The oracle.lite.sync.Consolidator API docs refer to this API in
    several places as the preferred replacement for deprecated
    methods but I can't find the javadoc for these classes anywhere.
    Thanks,
    Allen.

    In your Oracle 9i Lite Documentation index, look for 'Web-to-Go
    API Specification' (is right below of 'Consolidator Admin API
    Specification' link in the References).

  • How to access an Oracle Lite 10.2 from native VC++ 2005 mobile app

    Hi,
    I'm developing a MS VC++ 2005 mobile app than will run on Mobile 5 ARM devices. This app needs to connect to an Oracle Lite 10.2 Lite database that is currently installed on those devices.
    I know that the MFC and ATL libraries are not "fully" supported on the mobile platform I need, so I need a way to connect to the Lite database, as those libraries don't provide that kind of functionality.
    I've been looking around for ways to connect to a Lite Database using VC++ 2005 native, but nothing seems to work!
    I've tried SODA but I simply couldn't connect to the database. After that, I've tried OLEDB, as I folowed articles on adapting MFC oledb.h to the mobile platform. Useless, because the articles focused only SQL Server CE.
    Anyone can give me a clue how to access the lite database from VC++ 2005?
    Isn't there any library like the Oracle.DataAccess.Lite_wce.dll for the CF.NET I can use?
    Thanks in advance.
    -- Manuel Costa

    Marc,
    Where can I find those libraries? Are they available to download in the Oracle site?
    The SODA Api has very few documentation, only an Oracle HTML document.
    Do you know any links with useful tips and examples I can use?
    By the way, the Soda API I tried implemented the try-catch exception handling using a special lib (not the try-catch available in the standard VC++ 2005). Has this been changed in the more recent versions you pointed out?
    Thanks in advance.
    -- Manuel

Maybe you are looking for

  • SharePoint/Active Directory Workflow

    I have been told at my School, that there is a workflow built that notifies a specific user or group of users when a person has been added to an active directory group. For example, in my scenario, when a new faculty member has been added into Active

  • Can't install Lion in two macs

    Hi, i'm using a MBA where i purchased, downloaded and installed LION with no problem. When i sign in APP Store with the same apple ID in my Imac 27" i can't seem to be able to download and install LION on this machine...it shows the price and buy now

  • Can you share iTunes music w/Apple TV and Airport Express?

    Can you share iTunes music between Apple TV and Airport Express? I have been very happily using 2 Airport expresses to share my itunes library from my iMac to 2 other rooms. I just bought an Apple TV for the bedroom (and I ASSUMED to replace the Airp

  • Run-time errors--need help

    Hi everyone, I'd greatly appreciate some help with this java program...here's the problem: Create a class Person that does the following: 1. Set the Last Name only 2. Set the First Name only 3. Set the Middle Name only 4. Gets the First Name 5. Gets

  • How do I attach a web link in a text message?

    how do I attach a web link in a text message?