Palm WebOS Emulator fails to setup on Virtualbox 3.1

the webos SDK doesn't work under the latest version of VirtualBox (3.1) .
             VirtualBox version not supported.
             Palm webOS Emulator requires a previous version of
             VirtualBox to be installed. Currently supported versions are
             3.0.0 to 3.0.12.
The 1.3.51 SDK worked after upgrading to VirtualBox 3.1, so I imagine this is just a faulty search in "/opt/PalmSDK/0.1/share/jars/webos-emulator.jar".
If this isn't the correct forum for this bug, please let me know where I should submit it.
This question was solved.
View Solution.

Developer forums can be found here.
http://developer.palm.com/distribution/index.php

Similar Messages

  • Using palm os emulator through java wireless toolkit!!.....pls help

    I have palm os emulator 3.5 installed.I am trying to integrate it wid d java wireless toolkit 2.2,in addition to d default devices provided by d toolkit.But i hav failed to integrate pose in jwtk.
    i am running midp2.0 and cldc1.1.
    Also i have downloaded d rom files required by d emulator.
    Pls anyone help me!!
    How can i use palm os emulator through java wireless toolkit?
    thanking you
    shivam sahai

    hi,
    I hope that you already have the J2ME Toolkit and that your emulator works okay. In the toolkit you get several examples to show you how to program a MIDlet. One has to do with a HTTP client server connection. Also in the API documentation for the J2ME there is a Connector class that you used to set up this communication and in the description of this class it pretty thoroughly explains how to set up an HTTP protocol client.
    However, if you want to do some other kind of networking then you are pretty much out of luck, as the TCPIP socket protocol has not been fully implemented and is optional to the J2ME specifications, only the HTTP protocol is certain to be available. This means that mobile phone companies can add other networking functionality to their phone's java virtual machine if they feel like it. This is a bummer I know.
    I hope this helps.
    Cheers,
    Mark

  • Palm OS Emulator problem

    hi all,
    the problem i've got has something to do with the refreshing of my Midlet's display.
    I've got two "Displayables" one Canvas and one TextBox, first i set the Canvas (with an image) as the current object on my display, it works fine, the problem is that i've got a command in the Canvas that when pressed it change the midletsdisplay.setCurrent(TextBox).
    If i run this midlet with the ktoolbar application everything works fine, but if i run it with the Palm Os Emulator 3.3 the Canvas is not removed from the display and i cant see the TextBox.... any ideas?
    thank you,
    Laura.

    [LauraD],
    What you are seeing with the Display.setCurrent() method is explained in the MIDP API documentation. There isn't a website that I can point you to the online, so I have taken the liberty to cut n paste the setCurrent() API documentation explanation of its usage:
    setCurrent
    public void setCurrent(Displayable nextDisplayable)Requests that a different Displayable object be made visible on the display. The change will typically not take effect immediately. It may be delayed so that it occurs between event delivery method calls, although it is not guaranteed to occur before the next event delivery method is called. The setCurrent() method returns immediately, without waiting for the change to take place. Because of this delay, a call to getCurrent() shortly after a call to setCurrent() is unlikely to return the value passed to setCurrent().
    Calls to setCurrent() are not queued. A delayed request made by a setCurrent() call may be superseded by a subsequent call to setCurrent(). For example, if screen S1 is current, then
             d.setCurrent(S2);
             d.setCurrent(S3); may eventually result in S3 being made current, bypassing S2 entirely.
    When a MIDlet application is first started, there is no current Displayable object. It is the responsibility of the application to ensure that a Displayable is visible and can interact with the user at all times. Therefore, the application should always call setCurrent() as part of its initialization.
    The application may pass null as the argument to setCurrent(). This does not have the effect of setting the current Displayable to null; instead, the current Displayable remains unchanged. However, the application management software may interpret this call as a hint from the application that it is requesting to be placed into the background. Similarly, if the application is in the background, passing a non-null reference to setCurrent() may be interpreted by the application management software as a hint that the application is requesting to be brought to the foreground. The request should be considered to be made even if the current Displayable is passed to the setCurrent(). For example, the code
             d.setCurrent(d.getCurrent()); generally will have no effect other than requesting that the application be brought to the foreground. These requests are only hints, and there is no requirement that the application management software comply with these requests in a timely fashion if at all.
    If the Displayable passed to setCurrent() is an Alert, the previous Displayable is restored after the Alert has been dismissed. The effect is as if setCurrent(Alert, getCurrent()) had been called. Note that this will result in an exception being thrown if the current Displayable is already an alert.
    To specify the Displayable to be shown after an Alert is dismissed, the application should use the setCurrent(Alert, Displayable) method. If the application calls setCurrent() while an Alert is current, the Alert is removed from the display and any timer it may have set is cancelled.
    If the application calls setCurrent() while a system screen is active, the effect may be delayed until after the system screen is dismissed. The implementation may choose to interpret setCurrent() in such a situation as a request to cancel the effect of the system screen, regardless of whether setCurrent() has been delayed.
    Parameters:
    nextDisplayable - the Displayable requested to be made current; null is allowed.
    So as you can see, setCurrent() requests are only hints as explained in the documentation. There is no requirement that the Java Application Management software comply with these requests in a timely fashion ,if at all. Therefore what it means for you is that the JAM implemented for the wireless toolkit inteprets the call to setCurrent() differently than the Palm OS application management software which is running on the Palm OS operating system. Suffice to say, this does not mean that the MIDP implementation for the Palm OS is non compliant, it just means that the different runtime environment inteprets setCurrent() differently since calling the method is just a hint to the system to bring the Displayble object to the foreground.
    It will be helpful if you can post snippets of the code for us to examine and suggest a way to workaround your issue.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Emulator fails to run for Netbeans

    Using NetBeans 5.5 and NetBeans mobility 5.5 I completely fail to run anything under the emulator.
    I have tried removing all previous NetBeans, wireless toolkits and JVM and reinstalling, to no avail.
    Wireless toolkit 2.5 still works okay, but under NetBEans the emulator phone appears briefly with no midlets listed and then exits.
    Has this anything to do with the emulator failing to find the built Jar files. Everything I am doing is based on defaults. I create the mobile application and allow the system to create the main class. The only think I changed was the destination folder for the project to be different from default.
    Any clues as to how I might fix this.
    All help appreciated,
    Gavan

    This problem is almost certainly caused by aggressive firewall or anti-spyware rules.
    I installed and ran this on a home PC, and was prompted to grant a permission of some kind before it would allow the program to connect to the emulator.
    Unfortunately the message did not repeat. I will update when I figure this out.
    In the mean time iff anyone knows exactly what the emulator may be doing to trigger a security check, I would like to know.

  • Newvie: How to simulate J2ME appliations on Palm OS (emulator)

    Hello!
    I wanted to write app in J2ME for a palmtop with Palm OS. On
    java.sun.com I found information that J2ME Wireless Toolkit 1.0.4_02
    runs with Palm OS Emulator. Also the emulators list at (2) said
    that. This was confirmed by the The Lurker's Guide to J2ME (3).
    I installed J2ME Wireless Toolkit 1.0.4_02 and I haven't found such
    an option - there is no PalmOS_Device in a Device pulldown menu. In
    Toolkit 2.3 neither. I have PalmOS Emulator up and runnin' but I do
    not know how to run a java application (J2ME project)
    on it.
    What should I do?
    Thanks 4 help in advance.
    Links
    (1) http://java.sun.com/products/sjwtoolkit/download.html
    (2)
    http://developers.sun.com/techtopics/mobility/midp/articles/emulators/index.html
    (3) http://www.blueboard.com/j2me/notes/2002_6_24.htm

    hi,
    could you be a little bit more precise. Are not all MIDP'a included in Wireless Toolkit?
    What in particular should I download?
    I do not know also how to put the application on the device PalmOS emulator as it runs on rom image files: *.rom.

  • Versamail in a Palm OS Emulator

     Hi team,
    I've installed Versamail application in Palm OS Emulator and I'd like to set it up to receive and send email. Is it possible? 
    What is the Mail Service. Protocol? What is the Incoming and Outgoing mail Server?                                                                             Is it possible to read my emails in Palm Desktop as I read my contacts and media?                                                                                                                                                                                                                                                                   I need your help, please.                                                                                                                                                       Regards
    Post relates to: Tungsten E2

    I doubt the emulator can retrieve email, but I've never tried.
    Mail Service - The mail service you're using!
    Protocal - IMAP or POP
    Incoming/Outgoing servers - like any email account, you have to specify what servers to use!
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Flash for Palm webOS update???

    Is everyone just giving up on the Palm webOS Flash update or what?? I have had a Palm Pre since last summer and have been waiting for almost a year now for Flash Player to come to webOS.
    Doesn anyone know what is going on with the update??
    Thanks...

    fun game

  • Schroot: Chroot setup failed: stage=setup-start

    $ schroot -p opera
    /usr/lib/schroot/schroot-mount: symbol lookup error: /usr/lib/schroot/schroot-mount: undefined symbol: _ZN5boost10filesystem6detail10status_apiERKSsRi
    E: Arch32-9a3a3cfd-bb6d-4e13-bdb6-4b7c237623f6: Chroot setup failed: stage=setup-start
    I followed the wiki, daemon is started. I just don't understand what this error means. Looks to me like it's trying to mount  UUID and can't.
    opera, firefox, etc work fine if I chroot /opt/arch32. Just schroot fails. Does anyone else have this working at the moment?

    I'm not using testing, but have this same error.
    Edit...
    I removed schroot
    pacman  -R schroot
    Deleted /etc/schroot
    Then building schroot with abs seems to have fixed the problem, although I'm not sure what the original problem was.
    also, If you're like me and often open programs using a different locale, you need to specify the locale befor the schroot command...
    LANG=zh_CN schroot -p firefox
    It's a little different than how dchroot works.
    Last edited by Leigh (2008-10-16 09:46:15)

  • Samba: Error: failed to setup guest info plus wrong workgroup

    I've managed to get Samba, running as PDC, into a broken state on 10.6.4.
    smb repeatedly crashes with the error "failed to setup guest info". I've done multiple searches on the web for this one but nothing stands out by way of an explanation or answer.
    nmb reports that it is the master browser for workgroup = Workgroup and yet the settings for the workgroup in Server Admin are for domain = HOME.
    serveradmin settings smb reports the correct workgroup name but it seems the running nmbd isn't getting the message.
    Anyone have any ideas or pointers on how to completely reset Samba?
    Message was edited by: herveyw

    I've managed to get Samba, running as PDC, into a broken state on 10.6.4.
    smb repeatedly crashes with the error "failed to setup guest info". I've done multiple searches on the web for this one but nothing stands out by way of an explanation or answer.
    nmb reports that it is the master browser for workgroup = Workgroup and yet the settings for the workgroup in Server Admin are for domain = HOME.
    serveradmin settings smb reports the correct workgroup name but it seems the running nmbd isn't getting the message.
    Anyone have any ideas or pointers on how to completely reset Samba?
    Message was edited by: herveyw

  • OPS에서 SYSTEM FAIL로 인한 SQL*NET FAIL-OVER 에 대처할 수 있는 SETUP

    제품 : SQL*NET
    작성날짜 : 1997-11-20
    OPS에서 SYSTEM FAIL로 인한 SQL*NET FAIL-OVER 에 대처할 수 있는 SETUP
    ==================================================================
    OPS에서 여러 node를 사용 중 한 시스템이 fail이 생길 경우 사용자의
    application 수정없이 fail-over 시스템으로 접속하는 방법입니다.
    제약 조건 > SQL*NET V2.3.2.1.6 for windows 95
    SQL*NET V2.3.2.1.8 for windows
    상기의 Version 이상 이라야 하며 위의 경우 tnsnames.ora 화일의
    configuration에 대한 setup 내용입니다.
    Example tnsnames.ora for SQL*Net 2.3 fail-over.
    When a user requests to connect to <alias>, sqlnet will attempt to
    connect to the address in the first description in the
    description_list, if that fails, it will try to connect to the address
    in the next description in the description_list.
    You can have as many descriptions in the description_list as needed.
    The client will only receive an error if all the descriptions fail.
    <alias>=
    (description_list=
    (description=
    (address_list=
    (address=
    (protocol=tcp)
    (host=<server 1>)
    (port=1521)
    (connect_data=
    (sid=<sid1>)
    (description=
    (address_list=
    (address=
    (protocol=tcp)
    (host=<server 2>)
    (port=1521)
    (connect_data=
    (sid=<sid2>)
    )

  • Failed to setup dm-crypt

    Hi, I've recently (within the last hour or so) updated my system and rebooted, only to find that my system cannot decrypt one of my partitions. cryptsetup comes back at me with:
    Failed to setup dm-crypt key mapping for device /dev/md3.
    Check that kernel supports serpent-xts-essiv:tgr192 cipher (check syslog for more info).
    Unfortunately there doesn't seem to be anything in the syslog. The kernel has loaded the serpent_generic, serpent_sse2_x86_64, xts, and tgr192 modules.
    Is it likely that I've missed something during the update? A missing kernel module or something changed in cryptsetup?
    Thanks

    https://wiki.archlinux.org/index.php/Re … Guidelines
    Not a Sysadmin issue, moving to NC...

  • CSM 4.1 - Flexconfig (Syntax errors detected - Failed to setup Velocity Engine to validate syntax)

    Hi,
    I am trying to build a simple flexconfig to remove some aaa statements. When I try to create any
    basic flexconfig, I get the following error msg:
    Syntax errors detected
    Failed to setup Velocity Engine to validate syntax
    Please correct errors.
    The flexconfig consisted of the following cmd:
    no aaa group server tacacs+ server123
    I also tried cloning an existing example "IOS_enable_SSL", rename and recieved the same error.
    What is the Velocity Engine and how can I verify that this component is working correctly?
    Regards
    Kevin

    Just discovered that I once saved this bug here: https://www.cisco.com/cisco/psn/bssprt/bss?searchType=bugIdSearch&bugId=CSCtz91443
    They write since around today that it's finally fixed. Maybe this actually also fixes our issue here. Sadly there isn't yet a version given in which it's fixed.

  • HP Veer fails in setup trying to sign on APN error

    Hi all,
    Sorry for the extremely long post, it's kind of a complicated problem.
    Last week my wife sent her Veer through the wash, and not surprisingly it didn't survive 
    So we bought a new Veer from Amazon. When I ordered it, delivery time showed a delivery day of June 28th, but the estimated delivery date with the shipping notice was to be July 5 which was too long for her to go without a phone, which majorly ****ed me off. So I wanted to get a full size smartphone anyway so bought a new Focus S for myself intending to give her my Veer and then just sell the new one when it got in.
    Please note that we are using a prepay plan with no data plan, which turned out to be a HUGE deal when talking with the AT&T people.
    I did a WebOS doctor wipe on the Veer and tried to go through setup on it. It restarted and I went through the setup process.  It all worked fine up to the point where I needed to sign in to our profiles. I kept getting a sign in error, I even tried setting up a new sign on, nothing worked. Swapped sim cards, and tried both of our logons. I can't get past this sign on page so I am completely blocked at this point.
    After trying to sign in it times out  and we get to a screen "Sign in Failed" with an button for "Enter Phone Settings" with the following options already filled out.
    INTERNET APN - wap.cingular
    USERNAME - [email protected] 
    PASSWORD - Encrypted field but looking online found it was CINGULAR1
    Called up AT&T support, they couldn't figure it out and so thought the phone was bad and since my Veer was under warranty they are sending me a new one (charged me $15.00 to get it shipped by Monday!!) At this point I figured I had some how killed the phone during the reset process, but then the mailman came and delivered us the phone we ordered from Amazon, so tried that one, same darn problem with it, grrrr.... So next I called up At&T and tried to cancel the replacement phone and get my bucks back, but they couldn't cancel it. **bleep**!
    So called them back to explain the phone wasn't the problem and then I ended up with a "senior" support rep from AT&T, who to give the devil his due, tried to be helpful, we tried entering a bunch of different entries in the phone settings fields, nothing worked. After about two hours, she basically threw her hands up in the air and kept telling me this was an unsupported phone and that the 4g network wasn't supposed to work with the Veer and a bunch of other idiotic stuff. The same phone with the same sim had been working just fine up until the reset which she kept ignoring when she tried to tell me this, I kept calling BS on it.
    My next step was to visit an AT&T store and try to use one of their sims that had a data plan on it to see if it would work to get past the sign on screen. Luckily I caught them in a very dead time, there were 5 of them standing around twiddling their thumbs so they were thrilled to try and help me out. Tried a couple of different sims, messed around with the phone settings again, none of these worked. I also had them check my wifes sim to confirm it still had plenty of cash on it, it did.
    So the only thing I can think of is that the sign on server at HP\Palm is dead, but I can sign on and view my account online, phone shows up just like it should so not sure that is it either.
    Any ideas how to get past this? Any chance I can restore a backup when the phone is in this state?
    Believe me when I say any help or advice would be GREATLY appreciated!!
    Post relates to: HP TouchPad (WiFi)
    Post relates to: HP TouchPad (WiFi)

    Just fixed my veer issues.
    first, the apn should be WAP.cingular not wap.cingular, which is the (incorrect) preset apn.  make sure your WAP in capitalized.
    second, make sure you contact At&t and have them update the IMEI number associated with the sim card.  the number can be found by sliding up the veer and looking on the back, mirrored section.  it's small, but it's there.
    those 2 things solved my issues.  best of luck to you.

  • Palm Desktop software fails to start

    I have Palm Desktop 4.0.1.   When I try to start it, it fails, and gives an error message of "failed to open Address Book Database."  How can I fix this, and retain the saved info?

    Please refer to this thread, found using Search...
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • UCCX 9.0.2 AXL account continues to fail on setup

    I am spinning up a new CUCM 10 and UCCX 9.0.2 lab for our engineering department to begin work on testing features of our product against and during the initial setup I tell the system I am doing a "fresh install", the next step is to insert the service provider information. I put in the IP of my CUCM 10 cluster (on the same network) with the AXL Admin user name and the password. In every instance I get the error "Cisco Unified CM Authentication Failed because of the CCMAXL Exception. Please check the logs for details."
    I have enabled all services on this lab box, verified all my AXL usernames/passwords and reset multiple times and yet it still fails on me. I know this is the latest product from Cisco and experience may be light - but do any of you have any suggestions on what I can do to get this going?

    Hi,
    I see that you are using 9.0.2, but is it the base version (9.0.2.10000-71) or the SU1 (9.0.2.11001-24)?
    9.0.2 base is not compatbile with the CUCM 10 and 9.0.2 SU1 is compatible provided the following:
    3.Install ES03 or later version on Unified CCX 902SU1 to work with Unified Communications Manager 10.0(1).
    You can check this in the compatibility matrix:
    http://www.cisco.com/c/dam/en/us/td/docs/voice_ip_comm/cust_contact/contact_center/crs/express_compatibility/matrix/crscomtx.pdf
    Also, please note that we have had a lot of issues with 9.0.2 SU1 ES03 and we have deferred customers from using it. The fixes for the problems in ES3 and the fixes for which ES3 was released has been issued in ES4.
    So please upgrade to 9.0.2 SU1 ES04 in case you need it to get going with CUCM 10.0
    Hope this helps!
    Regards,
    Arundeep
    CCIE Voice #40132

Maybe you are looking for