Jre 2.2 version compatable for Palm OS

Hi, I am using Palm os device. I would like to develop a application with SOAP and other facilities which is availabale on j2me 2.2 or 2.3 version but for Palm os there is only 1.0 version of J2me is available. Please tell me where from i get MIDP 2.2 or 2.3 for Palm OS .
Please send me mail on [email protected]

Is ther a player for any of the previous versions? i think
the only Palm-based device that had a player is the Sonly Clie. If
memory serves, it wasnt the OS itself, but the hardware power (or
lack thereof) on most Palm devices. Don't know where the FlashLite
player stands in relation to Palm devices though. You might want to
post on the mobile & devices forums or try to get in touch with
Bill Perry (www.flashdevices.net) at Adobe directly.
Good luck!

Similar Messages

  • Version compatibility for installing WLS and ADR for ADF 11.1.2.0

    Hi,
    Can anyone pls let me know what versions of Weblogic server, Application Development Runtime (ADR) is required to install Oracle JDeveloper 11.1.2.0
    B'coz currently I am trying to install Weblogic server, ADR and ADF separately and try to deploy and publish an application in ADF 11.1.2.0 verison.
    I am trying this for the past 4 days, but still can't deploy an application successfully in ADF 11.1.2.0 version. Pls let me know the version compatibility.
    Thanks,
    Aparna

    Hi John,
    Even I saw the link that u had mentioned. From where can I install these ?
    I had downloaded WLS 10.3.5 and ADR 11.1.1.5 separately. But from where do I install the patch ?? I didn't find a proper source to download.
    Pls help.
    Thanks,
    Aparna

  • Windows 7 - which version needed for Palm to work?

    I think perhaps I understand the answers, but please tell me if I have this worked out correctly. I have a Palm M515, so no bluetooth or wifi.
    1. I want a 32 bit system on one machine. I think I can simply install Windows 7 Home Premium, install Palm Desktop V4.1 and everything will work fine just as it does under Vista. I sync using USB or serial. Is that right?
    2. I want a 64 bit system on another machine. I know Palm don't support 64 bit. However reading the Microsoft pages if I buy Windows 7 Pro it provides support for the Windows XP Virtual Machine. I assume the virtual machine can be 32 bit? So if I install that then I believe I can install the Palm software (I'm on V4.1) and also use USB to synchronise. Is that right? Has anyone tried it? Have Palm themselves tried it yet?
    These seem to me crucial questions for many users as 64 bit system become common. Do Palm read these forums, I can find nothing about this on their website?
    Post relates to: Palm m515
    This question was solved.
    View Solution.

    I have a fix that works fine for me. I bought a cheap PC that came with 64 bit home premium, and I am considering rolling it to 32 bit pro but until then, I have installed Vmware Player - a free app that will run in 64 bit Win 7.
    I migrated my old Windows XP system to this platform, and have been very pleasantly surprised by how well USB works on it (I have a lot of VMware experience from server 1.x, server 2.x, ESX 3 and 4 - this is a real leap ahead.)  I am able to sync to the Palm desktop in the virtual XP very nicely, and Mobipocket works there as well.  Since no one is suggesting that XP mode from Windows is worth a try, I have to assume that the Windows virtualization platform is not as complete.  This does not surprise me. 
    Now that I know the palm desktop may install in Win 7, I have a migration path for the data, but to be honest, so much of my day-to-day work requires that I have access to a working 32 bit install that I use the VM OS a lot of the time. 
    By the way, it may be harder to 64 bit drivers for Windows than you think.  The key app for me is a Cisco IPSEC vpn client.  I have seen a purported beta of the application for 64 bit systems but don't trust it. 
    Given how much $$$ a Cisco house spends on hardware and licenses, and how huge Cisco is, if Cisco can't pull its head out and deal with this, I can hardly blame Palm. 

  • Version compatability for Transformation

    Hi,
    I developed code for transforming the xmls by using xsl contain java methods
    ex:
    <xsl:stylesheet version="2.0" xmlns:jiva="com.seq.sqlxml.xslutil" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="seq" >
    <xsl:output method="xml" indent="yes" encoding="utf-8"/>
    <xsl:param name="SEQXML"/>
    <xsl:template match="/">
    <ROOT>
    <xsl:attribute name="mapping-schema"><xsl:value-of select="seq:getMappingSchemaName($SEQXML)"/></xsl:attribute>
    <Cart relation="Cart" >
    <xsl:for-each select="pageXML/Cart" >
    <CartId> <xsl:value-of select="seq:getContextSequence($SEQXML, ./CartId, 'Cart_Sequence')" /> </CartId>
    </xsl:template>
    </ROOT>
    Here getContextSequence(int cartId,String CartSequence) is java function
    My problem is
    StreamSource stylesource = new StreamSource(new File(xSLFile));
    Transformer transformer = TransformerFactory.newInstance().newTransformer(stylesource);
    This code is working well for j2sdk 1.4 but it raises the Exception in JDK1.5
    Exception:
    ERROR: 'The first argument to the non-static Java function 'getMappingSchemaName' is not a valid object reference.'
    FATAL ERROR: 'Could not compile stylesheet'
    javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:824)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:619)
    So please help to over come this problem.
    Thanks & regards
    Tiger

    Hi,
    I developed code for transforming the xmls by using
    xsl contain java methods
    ex:
    <xsl:stylesheet version="2.0"
    xmlns:jiva="com.seq.sqlxml.xslutil"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    exclude-result-prefixes="seq" >
    <xsl:output method="xml" indent="yes"
    encoding="utf-8"/>
    <xsl:param name="SEQXML"/>
    <xsl:template match="/">
    <ROOT>
    <xsl:attribute
    name="mapping-schema"><xsl:value-of
    select="seq:getMappingSchemaName($SEQXML)"/></xsl:att
    ibute>
    <Cart relation="Cart" >
    <xsl:for-each select="pageXML/Cart" >
    <CartId> <xsl:value-of
    select="seq:getContextSequence($SEQXML, ./CartId,
    'Cart_Sequence')" /> </CartId>
    /xsl:template>
    </ROOT>
    Here getContextSequence(int cartId,String
    CartSequence) is java function
    My problem is
    StreamSource stylesource = new StreamSource(new
    File(xSLFile));
    Transformer transformer =
    TransformerFactory.newInstance().newTransformer(styles
    ource);
    This code is working well for j2sdk 1.4 but it
    raises the Exception in JDK1.5
    Exception:
    ERROR: 'The first argument to the non-static Java
    function 'getMappingSchemaName' is not a valid object
    reference.'
    FATAL ERROR: 'Could not compile stylesheet'
    javax.xml.transform.TransformerConfigurationException:
    Could not compile stylesheet
    at
    t
    com.sun.org.apache.xalan.internal.xsltc.trax.Transform
    erFactoryImpl.newTemplates(TransformerFactoryImpl.java
    :824)
    at
    t
    com.sun.org.apache.xalan.internal.xsltc.trax.Transform
    erFactoryImpl.newTransformer(TransformerFactoryImpl.ja
    va:619)
    So please help to over come this problem.
    Thanks & regards
    TigerYou get that error because you are trying to invoke a method in the wrong object reference. I suspect your passed in parameter $SEQXML is not a
    com.seq.sqlxml.xslutil object instance.
    First make sure the method you are trying to invoke has the right signature. Second, if the method is not a static method, then make sure the object parameter you passed in is the correct instance.

  • Latest version info for internet sales.

    Hi all,
    We are having ECC 6.0 and EP 7. is there any version compatable for this. please provide with some informaiton on the same.
    Regards,
    Srikanth Anthargam

    Hello,
    I've just had a look into the Product Availability Matrix http://service.sap.com/pam but I can't find it here. I think you should open a OSS Message to get a official answer.
    Regards
    Gregor

  • JRE version requirement for browser based Webtop connections ?

    I've been looking but I can't see a documented require version number for JRE for SGD browser webtop connections.
    Can anyone point me in the direction of something that says 'must use JRE 1.5 or higher' or something like that ?
    Edited by: Slimm on Feb 29, 2008 1:25 AM

    This is covered in the Release Notes for each version. e.g.
    [SGD version 4.4 release notes|http://docs.sun.com/source/820-2548/chapter1.html#d0e1108]

  • 64 Bit Windows7/8/8.1 USB drivers for Palm Desktop

    Thanks to the great folks over at Aceeca.com (makers of NEW PalmOS Garnet devices), USB drivers for 64bit Vista, Windows 7, and Win 8 operating systems are available.  There are many users reporting Palm Desktop 4.x is also working. 
    I have synced my TX to my Vista64 bit laptop, and Windows 8.1 HP Spectre X2 hybrid successfully via my USB cable. 
    The drivers are located here:
    Aceeca Driver Downloads
    Installation instructions (from Aceeca) for Windows 7 are included in the download.
    Basic instructions:
    1. Download the drivers and Extract them to the same folder.  Remember the folder you extracted them to.
    2. Try to HotSync your device.  It will fail.
    3. Open the Device Manager, and look for the Yellow Triangle next to either "Acceca" or "Palm Device" under "Other devices".
    4. Right-click on the device, and choose "Update Driver Software".
    5. Choose "Browse My Computer for Software" and direct it to the folder you extracted the Aceeca drivers to.
    6. Choose "Next" at the driver file location window, and then tell it to "Always trust software from Aceeca Ltd." then click the "Install" button.
    7. I received an error message (Vista64) that told me "The drivers were installed but the device couldn't be opened." I saw that my TX had timed out and went to sleep.  I tried a HotSync and it worked!!! 
    Good luck! 
    NOTE:  Palm Desktop 6.22 may only show Media and Install.  Here's how to fix that:
    If Palm Desktop 6.2.2 only shows Media and Install, try this:  Right-click on the shortcut for Palm Desktop, then choose "Run as Administrator".  The ther modules should appear.
    To make Palm Desktop Run as Administrator every time in Windows 8/8.1:
    Close Palm Desktop, if open.  (This is a very important thing to always do when using 6.2.2 - it has been known to lose data when a computer is shut down without closing the program!)
    Right Click on the Palm Desktop Icon in the Metro screen, then choose "Open File Location".  You will now see the actual file for the shortcut.
    Right-click on the "Palm Desktop" shortcut file, then Properties.  Now pick the Compatibility Tab at the top.
    At the bottom of the Compatibility Tab is a checkbox:  "Run this Program as Administrator", Click OK .
    Try opening Palm Desktop, all the parts should appear.  You may see a box open when you close the program asking "Did the program run correctly?"   I picked "Yes", and it's been working fine since then!
    If you are using a much older PalmOS device and want to try using Palm Desktop 4.x, you will need this additional patch from Pimlico Software:
    Palm HotSync Setup
    WyreNut
    Forum member bobboffin has added this post:
    "After attempting your first HotSync and failing (as expected) you may be unable to find any trace of the device in Device Manager, making the next step quite difficult. This happened to me, and after some investigation I discovered the following tip that allows Device Manager to show hidden and non-present devices.
    Open up Notepad and paste the following two lines into it:
    set DEVMGR_SHOW_NONPRESENT_DEVICES=1
    start devmgmt.msc
    Save it as SetDev.bat into My Documents.
    Open My Documents in Windows Explorer and double click on SetDev.bat. Device Manager should open.
    In the View menu select Show Hidden Devices.
    You may now see under the Other heading the failed device with a yellow triangle against it.
    You can now proceed to install the drivers per the instructions.
    Note that the driver supports most Palm OS versions. I'm actually using an Aceeca Meazura 1000 ruggedized PDA running OS 4.1  --- bobboffin"
    Hope this helps!
    WyreNut
    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!
    This question was solved.
    View Solution.

    Thank you so much.  I was thoroughly disappointed to see that the support telephone for paid support had been discontinued.  I thought I would need to replace my (ancient but serviceable) Z22. 
    I followed the instructions listed here and am very happy to report that I completed a sync!
    Thanks again.

  • Calendar Sync for Palm won't install Conduit

    Hi, I'm trying to install Calendar Sync for Palm 10.1 on Windows 2K. Installation proceeds with no errors, but the conduit does not appear in the Hotsynch conduit list. It does remove the default conduits for Calendar, Date Book and To-Do. I've tried uninstalling Palm Desktop and Calendar synch, and reinstalling them, no luck. HotSynch works fine with the conduits that are left, and works with the default conduits if I don't install the Oracle Calendar Synch. I can't find any mention of this problems on the forum, does anyone have an idea of what could cause it?
    Thanks.

    There's a bug on the conduits as to were to find needed DLLs. It depends on setting itself in the path via environment variables.
    The thing is that the conduits are not compatible with other Oracle client installations, which also add themselves to the path. An example is Oracle's Instant Client.
    Check your system's path to see if you have any other Oracle client directories before CalSync's directory.
    I had a TAR created for this and supposedly they will be 'patching' it for next version...

  • Calendar Sync for Palm and encryption

    We are converting our Calendar Server to always use encryption. We're not finding any way to specify the encryption in the Calendar Sync conduit. Did we miss it somewhere? If not, how do we force the Calendar Sync for Palm to use encryption?

    There's a bug on the conduits as to were to find needed DLLs. It depends on setting itself in the path via environment variables.
    The thing is that the conduits are not compatible with other Oracle client installations, which also add themselves to the path. An example is Oracle's Instant Client.
    Check your system's path to see if you have any other Oracle client directories before CalSync's directory.
    I had a TAR created for this and supposedly they will be 'patching' it for next version...

  • Downloading latest drivers for Palm T/X in Windows 7?

    Does anyone know how to download the latest drivers for Palm TX in Windows 7 and then hot sync as well? 
    Post relates to: Palm TX

    Yes, I do.  Thanks for asking. 
    Perhaps you're wondering what to do?  Download Palm Desktop 6.2.2 and install it.  Depending on which version of Win7 you have (32bit or 64bit), you will be able to sync via cable/USB or via Wifi.
    WyreNut
    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!

  • Can't open pdf attachment on Palm TX with Adobe For Palm download

    I downloaded Adobe for Palm OS (v. 3.0) to open email pdf attachments, but am getting error message: Attachment (not supported in this version) winmail.dat
    So can not open any pdf attachments.
    Tried getting mail via VersaMail and via m.comcast.net - same problem.
    Using Vista, Palm TX
    Thanks
    Post relates to: Palm TX

    Adobe for Palm is an ancient program that cannot read raw .pdf files.  It only works with a desktop component that converts pdf files that the old adobe program can read on a Palm.
    Look at the free "PalmPDF" at freewarepalm.com.  It can read pdf files by itself.
    (I'd also suggest you delete Adobe from your Palm as it's caused a lot of problems for many users)
    WyreNut
    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!

  • Version compatibility  of 10G Application Server 10.1.2.0.2  with  JDK 1.5.

    hi buddies,
    I want to know that whether
    10G Application Server 10.1.2.0.2 with JDK 1.5. is Version compatibility
    pls do send ur replies if known to you.

    Hi ,
    As far as I know AS 10.1.2.0.2 is Not certified with JDK 1.5.
    Please see below some links where you can double-check this
    1. OC4J with JDK 1.5 JSP compilation error
    2. http://docs.huihoo.com/oracle/docs/B14099_19/web.1012/b14011/chap1.htm
    "Only the JDK 1.3.1 and JDK 1.4 compilers are supported and certified by OC4J. It is possible to specify an alternative compiler by adding a <java-compiler> element to the server.xml file, and this might provide a workaround for the "classes not in packages" issue, but no other compilers are certified or supported by Oracle for use with OC4J."
    3. "Certified JDKs" from
    http://www.oracle.com/technology/software/products/ias/files/as_certification_r2_101202.html
    BR,
    Mihai

  • Facebook for palm

    I have downloaded the facebook for palm on my palm pre plus with verizon wireless. Is there any way I can have the app notify me when someone posts?

    It's well integrated as far as webOS goes (for example, looking at photo albums on facebook the interface is the same as the photos app.  And clicking on a contact name shows info that looks like the contact app.) but as dani points out it is pretty weak.  I'd really like to see the app beefed up but won't be surprised if someone else comes up with a better fb app.  THere's already one in the App Catalog (Friendsbook) but I understand the latest version is a bit buggy and requires re-authenticating each time you run it.
    Definitely room here for someone to come up with a decent FB app and make some $. 

  • NWDI version compatibility

    Hi,
    Does anyone know if there are any version compatibility constraints developing Java WebDynpro applications on an NWDI (WAS6.40) for deployment on a WAS7.00 instance (e.g. JDK's)?
    I've yet to find a general recommendation similar to that seen for SLD (i.e. keep in line with the highest WAS version on the estate) or any clear documentation on version compatibility across WAS stacks with respect to NWDI.
    We have a highly complex landscape with multiple component/ product versions, and we'd prefer to have a singel central NWDI instance, but I'm not sure if this is practical and/ or possible.
    Any pointers/ documentation/ comments gratefully received
    Cheers
    Neil

    While I can't remember where I've seen it, SAP does recommend that the DI always be kept patched to the latest levels, regardless of what version your landscape (or pieces thereof ) is at.
    So, as long as your DI is at patched to at least the same level as your most 'advanced' system, you should not have any problem.  You should also match your Developer Studio to the same level as your target system to avoid using any plug-ins that offer features not offered by the eventual runtime system.  Yes, the required libraries will be ok (as long as you configure the SLD and the associated track correctly), but the Developer Studio itself needs to be matched up.
    Hope that makes sense.

  • Photoshop Extended version compatability

    I have Photoshop CS3 Extended on both PC (Windows XP) and Mac (OS X Leopard). I'm able to upgrade the PC to CS5 Extended but not the Mac.
    My questions are:
    1 - Will Photoshop CS5 extended work on Windows XP?
    2 - Are CS3 and CS5 backwards compatible - if I work on a document in PC CS5 will the Mac CS5 version be able to open it? I know there will be some things that would not translate backwards, such as Puppet Warp and some of the newer masking and layers features, but I'd still like to be able to work on more basic functions of masking, cloning, etc. on both computers.
    Thanks for any help,
    Marcy

    Noel Car boni wrote:
    For the most part, a document saved from Photoshop CS5 will be no problem to open in CS3.  There's a "Maximize Compatibility" setting in Edit - Preferences - File Handling section that you'll want to set to "Always".
    -Noel
    My take is that the compatibility setting should be set based on the kind of work one does.  I have it set to  "Never".  When you check this setting ON you tell Photoshop to save along with all your layers another entity, which is a flattened version of the image. This, makes every PSD file you save larger by a non trival amount.
    So this setting should have no effect regarding Photoshop to Photoshop version compatibility. All Photoshop versions understand layers and do not need a flattened version.  It's intended to maximize the compatibility between Photoshop and any other program  that does not know about  layers but reads PSD files. If you have many of your PSD files going to, for example,  Lightroom or Premiere then set it to "Always". If not, you can set it to "Ask" or "Never" and save yourself a lot of storage space.
    Paulo

Maybe you are looking for