Mobile Server 11g app development tutorials

Can someone point me to documentation that will take me through on developing/deploying a basic java published app on Mobile Server?  I would like to test the development/deployment process.
Thanks,
Bob

  during install of DMS, there is an option to install the demo's - you will need to select this option.   After being selected, a directory under %mobile_home%/mobile/server  called demos and you can look in there.
  We also have demos for MDK when that is installed.    %mobile_home%/mobile/sdk/samples
thanks
mike

Similar Messages

  • Oracle Database Mobile Server 11g

    Hi,
    We implemented Oracle EBS R11i for one of our customers. We also implemented Oracle Mobile Server 9i on Windows Server and Olite 9i on PDAs running Windows.
    Now the customer wants to upgrade Oracle EBS to R12 and also upgrade Oracle Mobile Server and Olite 9i to newer versions of Oracle and also want to use Android on the PDAs/Mobile Devices.
    Can we implement Oracle Database Mobile Server 11g and Mobile Client as mentioned in these links:
    http://www.oracle.com/technetwork/products/database-mobile-server/dms-11g-datasheet-512117.pdf
    http://www.oracle.com/technetwork/products/database-mobile-server/overview/index.html
    I think it will be a new implementation of Oracle Database Mobile server and Mobile client and not an upgrade.
    Any suggestions is welcome.
    Regards,
    Thiru

    MFS embeds Olite into the product. Put another way, through MFS interfaces it defines/determines what functionality of mobile server can be used. Under the MFS configuration the Olite client database is used and the web-to-go app is used, there are no other choices. Very common when a software product includes some other product, it will determine what parts of the embedded product gets used.
    Olite 10.3.0.3 as a separately download product used standalone has additional capability. Note: 10.3.0.3 is no longer separately downloadable over OTN.
    In DMS 11.x -- we removed Olite client database, rearchitected sync to better fit BDB and allows for BDB and SQLite (either one of those can be used) on the client db. Again, MFS is only compatible with 10.3.0.3/2 right now. That team is a different development team within Oracle, on totally different release schedules than the Database Mobile Server development team. Android support was added in DMS 11.x.
    thanks
    mike

  • Oracle Mobile Server 11G with BerkeleyDB/SQLite

    Hi all,
    Actually I have got following situation:
    There are 2 Java apps that are running on Oracle Lite. Due to our Win 7 migration und outrunning support of Support for Oracle Lite we decided to migrate to Oracle Mobile Server 11 G and switch to Berkeley DB. So far so good.
    During migration my administrator reported warnings from migration utility that the apps are not compatible and aren't migrated. Within these applications databaseaccess is done via JDBC and SQL. There is no time and money to rewrite dataaccess layer, so I need SQL Access to Berkeley DB.
    For my first tests I created via Mobile Server API a new Publication that contains simply one publication Item that is in One Way Synchronization (Server to Client) . I wanted to take a look into the submitted Database File. For that I found dbsql.exe. I called this app via command line with: "dbsql.exe MyDb.db". DBSql started but returned an error that SQL Statement is incomplete?!. Any idea? For that new publictation i also wrote a testapp that should spool out the contents of publication Item in a later step.
    Ok now i took a new look into internet for getting information about SQL Support. There I found that Berkeley DB now is able to speak SQLite. So it seems that new database is able to speak SQL via SQLite. Is that correct?
    I switched now in MobileServer Console my testapp to SQLite Win32; US and installed the SQLite client on my computer. My next try was to connect this database to dbsql.exe. The call of dbsql.exe "MyDb.db" returned that error that databse is eather corrupted or encrypted.
    I was really unable to find a guide how to use that SQL API for Berkely DB. Which .jars should I import in my Java app? How is connection been made?
    Is here anyone that can help me a little bit out?
    Many many thanks in advance!
    Martin

    Hi, I see that this thread is old a little bit.  Do you still need help on it?  I have been able to create a publication with Mobile Server 11G with Berkeley DB as the client database.  I have also found the jar to use to access the client database in java.  Please let me know in you still need it and i'll post it here.

  • 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.

  • Oracle Mobile Server 11g - BerkelyDB corrupt.

    We have a client that currently uses Oracle Database Lite 10.3.0.3.0 to synce an olite database that interacts with a Win32 application. Due to the support being dropped they are in the process of migrating to Oracle Mobile Server 11g, however I have run into an issue with the BerkeleyDB files created by the sync agent.
    We have installed Oracle Mobile Server 11gR2 onto a linux environment, hosted on WebLogic 11. As a test I created a publication item for BerkeleyDB (Win32) with the workshop tool with a single table from our main database. Our developers are able to connect to the database using the System.Data.SQLite.dll and SQLite.Interop.dll files that came with the Windows MSI file, however any queries against a primary key column result in a "database disk image is malformed" error message. Queries against non-PK columns work fine.
    Whenever I attempt to use the dbsql.exe file to connect to the database file, I am presented with the following:
    C:\mobileclient\bdb\data\TESTUSER>dbsql.exe TEST.db
    Berkeley DB 11g Release 2, library version 11.2.5.3.21: (May 11, 2012)
    Enter ".help" for instructions
    Enter SQL statements terminated with a ";"
    dbsql> .database
    Error: SQL logic error or missing database
    Attempting the command again will proceed with:
    dbsql> .database
    Error: out of memory
    Enough connections/disconnections will eventually break though, but I doubt this is how it was meant to work. Once it is "working", this is the kind of errors our developers are running into:
    dbsql> select * from tbl1;
    PKCOL|VALCOL
    1|ONE1
    2|ONE2
    3|ONE3
    4|ONE4
    5|ONE5
    6|ONE6
    dbsql> select * from tbl1 where valcol = 'ONE1';
    PKCOL|VALCOL
    1|ONE1
    dbsql> select * from tbl1 where pkcol = 1;
    Error: database disk image is malformed
    dbsql>
    We can create a table through this sql interface and it works just fine. So I'm thinking the issue is either with how the Sync Agent creates the database, or its with how the Workshop tells the server to build the tables. I have attempted to use the workshop on both Windows and Linux environments to see if that would help, but unfortunately it does not.
    Does anyone have any ideas of where I should start looking? Am I just missing something that needs to be set on the client's (where the berkeleyDB is deployed) environment, or on the server side?
    Thanks,
    Nathan

    This issue has been resolved. It was related to the developers having a different set of Berkeley DLL files reference on their machines.
    Edited by: SparksN on May 10, 2013 12:24 PM
    Edited by: SparksN on May 10, 2013 12:25 PM

  • Can't set up repository for Database Mobile Server 11g (DMS)

    I'm trying to install DMS on GlassFish. After installed GlassFish and DMS. I started to run /admin/repwizard
    1. First screen, i gave Host name, Port number, Service base on GlassFish info
    2. Second Screen, l let the SYSTEM password blank (can't see any request to create password for SYSTEM before)
    When i press next, after 2 minutes, one dialog with mess: "Socket read timed out" appear
    Please help!!!

    More info: i'm installing on CentOS running on VirtualBox

  • Moving from Mobile server v. 10.3.0.2.0 to lastest 11g

    Hi,
    We have 2-300 Windows Mobile 6.1 clients distributed all over Norway. We are now moving towards Android, but for a while we will have to support both WM and Android.
    Currently we are running Oracle Database lite 10.3.0.2.0 (Android client is not out yet).
    How can we migrate to Mobile server 11g with the least effort (for the users)? Do we need to upgrade to 10.3.0.3.0 first, or can we go directly to the latest Mobile server 11g?
    Our Oracle database was upgraded to 11g (11.2.0.3.0) a while ago.
    Thanks,
    Marius

    we installed a fresh new oracle 11.1.0.6.0 then we installed the 10.3.0.3 , our database expert set up the environment correctly on windows 2003 server with java version (java -version)
    1.4.2_03-b02. then we started installing the patches as they came out (we installed a second java version for those but didnt change the java home so that olite still works with the 1.4.2 version) i think we installed like 5-6 patches (as they came along during the months). when we had to go to a client install or we needed to create a new testing/development server we just copied the entire server from the vmware and paste it into a new server then loggin change the ip manual and we had a new server. this way we could install a customer server in his environment in less than 4-5 hours (actually the copy paste takes like 4 -5 hours and then you need minor adjustments for his domain which take like 5 minutes).
    our clients are windows mobile 6.1-6.5 our apps are .net 3.5 on intermec and motorola handheld devices(rugged). we had some problems with the unicode characters and the set up for our localized (greek) characters but our database expert set the database with the correct language page (i think it was 1253 for us) and then we set it also on the windows mobile-olite and we got passed that issue too.
    i know this doesnt help you much but (im not an oracle expert, nor oracle rep) if i were you i wouldnt try to migrate from olite 10.3.0.2 to 10.3.0.3 . if i were you i would install a fresh 11g+10.3.0.3 and overwrite the entire server. the reason is that if you search this forum you will find many posts from people asking help about migrating from one version of olite to another. they report many problems. so why not make a fresh install? you can later migrate all the database tables your self.
    but if you need to go from 10.3.0.2->10.3.0.3 the link i sent you gives some info, if your problem persists i guess you need to ask for help from oracle, perhaps open a service request,(or perhaps search for a similar post here, if your lucky:) ).

  • Start Mobile Server problem

    I tried to start the mobile server under webtogo and apache but in both cases from http://host/webtogo/startup, after I introduce the password I got the error : java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path
    Does anybody have any idee what is the problem?
    Thanks

    Hi,
    Please check another thread posted by yourself, I have answered your question there: Re: Error when installing Oracle Mobile server - No APP server found
    Winnie Hu
    Oracle Berkeley DB and Oracle Lite Development
    winnie.hu at oracle dot com

  • Oracle Database Mobile Server

    I am running my Mobile Server 11g and i want to test if Server works.
    4.6 Testing Your Mobile Server Installation
    To test whether your mobile server was installed correctly, test your mobile server through a browser with the following URL:
    http://<machine-name>[:port]/mobile
    I tried:
    http://localhost:7001/mobile
    Error 404--Not Found
    http://localhost/mobile (without port 7001 form Weblogic Server)
    http://desktoppc:7001/mobile (my machine name)
    Error 404--Not Found
    http://desktoppc/mobile
    but i cannot access it... always an error.
    please help me fix this error. thank you
    jedi

    Hi Jedi,
    Did you start the Mobile Server ? There is an Icon in the Program Group.
    You should be able to see what port its running on appear in the command window when it starts up.
    If you have started the Mobile Server but it does not appear to be accessible can you access the WLS Admin Console ? i.e.
    http://localhost:7001/console
    What logs do you have in the domain you set up i.e.
    $OH\Middleware\user_projects\domains\mobileserver\servers\AdminServer\log
    regards
    Richard

  • Panels in CS5 for app development?

    Are there any panels in CS5 created for mobile devices/Android app development? What are the commonly used tools/panels for app development?

    Nope, there no other panels needed when developing for android, the only difference is when outputting the file, you should just keep an eye on the library regarding filesize, although it's not very important you never know.
    Many other things in regards to performance can be taken care of, but none of them are in a specific panel ( code, caching bitmaps, filter usage.... etc)

  • I am a mobile app developer in our University. which developer program should i apply ?

    I  am a mobile app developer in our University. which developer program should i apply to distribute the develpped University app?

    How does the University want to distribute their app....to whom?
    See:
    Choosing an iOS Developer Program / Which Developer Program is for you?

  • HTML5 Web/Mobile App Development

    Hi Friends,
    Can anyone say what are the combinations available in html5 web/mobile app development like html5+JS ?

    Here we will discuss the basics of HTML5 document. Today HTML5 is one of the most exciting buzz in web circles. Actaully HTML5 is the new standard for HTML.
    it is still a work in progress. However, the major browsers support many of the new HTML5 elements and APIs but not all.
    Rules for HTML5:
    New features of HTML5 should be based on HTML, CSS, DOM, and JavaScript
    Reduce the need for external plugins (like Flash)
    Better error handling
    More markup to replace scripting
    HTML5 should be device independent
    The development process should be visible to the public
    check it:
    http://www.phpzag.com/what-is-html5/

  • Mobile app development with Java FX

    Hi
    I would like to get the below details regarding the mobile app development using Java FX.
    1)Which is the latest version that supports mobile app development ?
    2)Will it have the cross device support?
    3) How about the performance and security?

    1)Which is the latest version that supports mobile app development ?None.
    1.3 did support mobile development to some limited extent, but that is a deprecated dead branch and no longer supported.
    You can run JavaFX on a Windows 7 or 8 tablet PC, but my guess is that by mobile app development you mean iOS/Android - neither of which are supported.
    2)Will it have the cross device support?Perhaps there will be a version of JavaFX that runs on iOS/Android at some time in the future.
    There are people working on making this possible =>
    http://mail.openjdk.java.net/pipermail/openjfx-dev/2013-May/007632.html "OpenJFX on iOS using RoboVM"
    3) How about the performance and security?Can't really talk about performance and security of something which doesn't exist.

  • Mobile App Development with 4.0 ?

    Greetings!
    I am just about to get into mobile app development. Our Company thou still operates Apes 4.0 and we are waiting for the 4.2 release, before we do the upgrade. On the other hand, the mobile app should be ready earlier due to customer requests.
    Now I myself I am still quite new to Apex. I have done some research about what you can do with earlier versions, but havn't really found anything very usefull yet. So I would like so ask here for some advice. I could try building the GUI myself with jquery, installing the latest jquery/mobile versions, fixing the templates, building my own templates, etc., but that would be a humungous work and not the apex-idea.
    Are there template plugins for tablet and iPhone GUI elements, that - maybe with a little tweeking - run on apex 4.0, including the touch-screen effects like "swiping" to the next page?
    Or would you suggest, to upgrade to 4.1, even thou in 3-4 months we might have to make the upgrade again?
    For any link to related articles I will be very gratefull, too.
    Best regards,
    tobi

    1)Which is the latest version that supports mobile app development ?None.
    1.3 did support mobile development to some limited extent, but that is a deprecated dead branch and no longer supported.
    You can run JavaFX on a Windows 7 or 8 tablet PC, but my guess is that by mobile app development you mean iOS/Android - neither of which are supported.
    2)Will it have the cross device support?Perhaps there will be a version of JavaFX that runs on iOS/Android at some time in the future.
    There are people working on making this possible =>
    http://mail.openjdk.java.net/pipermail/openjfx-dev/2013-May/007632.html "OpenJFX on iOS using RoboVM"
    3) How about the performance and security?Can't really talk about performance and security of something which doesn't exist.

  • Webcenter Sites 11g: Mobility server installation issue!!

    Hi ,
    I am trying to setup Webcenter Sites Mobility Server standalone ( Webcenter Sites CS and CAS up and running).
    I am facing some issue, trying to setup the same. Can anyone pls. help me on the same?
    I am getting the folloing error in the apache log -
    File does not exist: /opt/MS/msadmin/web/adminpanel/allProperties, referer: http://admin.ms1.coedomain.com:8001/
    The default properties are not getting populated on the MSADMIN UI.
    It says "Loading..." but never loads.
    I can see them in the database but not getting populated on the msadmin UI.
    The mapper url http://admin.ms1.coedomain.com:8001/mapper is also throwing 404 error.
    I can see the modules present under "/var/www/html/mobilityserver/apps/frontend/modules".
    Can anyone pls. let me know that apart from the installation steps mentioned in the Installation guide did I need to do anything else ?
    Please help. I am stuck on this for sometime!!
    Thanks

    Hi,
    Yes I have followed the same document.
    I have followed the steps exactly as mentioned in the document ( Only I have configured OCI and its working fine).
    At the end I ran the below command to test-
    sudo php symfony mobilityserver:testInstall env=prod host=ms1.coedomain.com:8001
    OUTPUT:
    mobilityserver:testInstall Task started at 2012-09-24 17:15:46
    mobilityserver:testInstall oraclecms configuration settings are present
    mobilityserver:testInstall Unable to connect to URL: http://ms1.coedomain.com:8001/writetest.php
    mobilityserver:testInstall Unable to connect to URL: http://ms1.coedomain.com:8001/writetest.php
    mobilityserver:testInstall Unable to connect to URL: http://ms1.coedomain.com:8001/writetest.php
    mobilityserver:testInstall Unable to connect to URL: http://ms1.coedomain.com:8001/writetest.php
    mobilityserver:testInstall WURFL works
    mobilityserver:testInstall Pulling XML from Content Server was successful
    mobilityserver:testInstall Parsing XML from Content Server was successful
    mobilityserver:testInstall Task ended at 2012-09-24 07:45:47 (1.696 seconds)I do not find the file "writetest.php" anywhere.
    I can see the errors in the log as "File does not exist: /opt/MS/msadmin/web/adminpanel/allProperties, referer: http://admin.ms1.coedomain.com:8001/"
    Do you have any file named "allProperties" under "adminpanel " directory?
    Probably because of this its not able to load the properties.
    Thanks,
    Dev.

Maybe you are looking for