How to get Java on my mobile device.

I pretty much only have one use for Java. I go to a game site that needs Java to run the game, but I don't know what Java program to put on my phone to make it work.
I have a Palm Treo 700wx with Windows 6. The site I go to is http://wild.ffiends.com/DCourt/Game.stm
To make that display on my phone's internet what is the best program? J2ME? And how to get it.
Thanks up front.

Hi,
I would ask does the phone have an App for getting IMs ?
Is the setting to Forward IMs to the Phone set in iChat > Preferences > Accounts ?
Does your Phone Service support IMs from outside their Network ?
I presume though that you are sending text to a number (+1234567890) rather than forwarding ?
The UK T-Mobile site has this page But needs a teelphone number to run the tool and does not answer FAQs as such
The FAQ Page is here (UK Site)
I would also be looking for any settings on the my account page (if I had one) to see if Accepting IMs has to be set there (And costings)
8:41 PM Thursday; April 2, 2009

Similar Messages

  • Tried to update ITunes, but keep getting error: Service "Apple Mobile Device" failed to start. Verify that you have sufficient privileges to start system services". How do I get my ITunes back?

    Tried to update ITunes, but keep getting error: Service "Apple Mobile Device failed to start.  Verify that you have sufficient privileges to start system services."
    So how do I get my ITunes back? 

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • HT1420 Trying to get latest version of Itunes and keep getting message that Apple Mobile Devices failed to start, do I have authorization. I am only user.  I have uninstalled old version of ITunes, becuase I kept getting errors. What do i do?

    Last time I opened ITunes, was told I did not have latest version and proceeded to download new version.  As it was loaded, keep getting message that Apple Mobile Devices failed to start, verify that I have sufficient privileges to start system services.  I am the only user on the computer and in household. I have tried installing several timees and keep getting same message.
    What should I do?

    Hey CarleneS,
    First, I would try the steps in here:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    If you end up having to remove and reinstall iTunes, make sure you follow all of the steps in this link:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    This section contains information that might help your situation, as the order and manner which you uninstall has an effect on the outcome:
    Use the Control Panel to uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    Let us know if following that article and uninstalling those components in that order helped the situation.
    Welcome to Apple Support Communities!
    Regards,
    Delgadoh

  • Java programing for Mobile devices on OS X

    im completly new to java, and very interseted in getting started with developing for mobile devices..
    i have experience with other languages (C#.NET, a little VB.NET, BaSH, Ruby, Python...)
    but i dont really know were to start..
    what do i need to create, compile, and use java aps on mobile devices
    Also, im using OS X 10.4, so i would need someting mac compatible...
    (i have an HTC S710 with Windows Mobile 6.0)
    Message was edited by:
    maxtors

    Hi java is platform independent , so dont worry about support on MAC etc.
    what i would suggest is before thinking of coding for mobiles learn core java. Install editors like netbeans,eclipse and understand the languages.
    The folowing links will help you
    http://java.sun.com/docs/books/tutorial/
    FYI java has Java ME platform for developing application on mobiles
    Vijay

  • How to get the list of active devices in current wifi network?

    Hi All,
    I am going to a start a new Network based app. So please any one give me an idea on the below question.
    How to get the list of active devices in current wifi network?

    Nope I want the log-in user to retrieve its Group where he is belong. I have this following code
    strUsername = Request.getParameter("username").toLowerCase().trim()+"@dev.test.com.ph";
    strPassword = Request.getParameter("password").toLowerCase().trim();
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);
    env.put(Context.PROVIDER_URL, MY_HOST);
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL,strUsername);
    env.put(Context.SECURITY_CREDENTIALS, strPassword);
    // enable tracing
    env.put("com.sun.naming.ldap.trace.ber", System.err);
    // Create the initial context
    DirContext initCtx = new InitialDirContext(env);
    // Get the target context
    DirContext targetCtx = (DirContext)initCtx.lookup("");
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    // Perform the search on the target context
    NamingEnumeration enum = targetCtx.search("","(userPrincipalName="+strUsername+")",constraints);
    javax.naming.directory.Attributes attrs;
    NameClassPair item;
    String[] attrIds = new String[]{"MemberOf"};
    // For each answer found, get its "Groups" attribute
    // If relative, resolve it relative to the target context
    // If not relative, resolve it relative to the initial context
    while (enum.hasMore()) {
    item = (NameClassPair)enum.next();
    Out.println(item);
    attrs = targetCtx.getAttributes(item.getName(), attrIds);
    Out.println(attrs + "<br>");
         initCtx.close();
    It returns all this string :
    {memberof=memberOf: CN=CMCanadaRD,OU=Groups / Teams,DC=dev,DC=test,DC=com,DC=ph, CN=iMngrCanadaRW,OU=Groups / Teams,DC=dev,DC=test,DC=com,DC=ph, CN=Domain Users,CN=Users,DC=dev,DC=test,DC=com,DC=ph, CN=Backup Operators,CN=Builtin,DC=dev,DC=test,DC=com,DC=ph, CN=Administrators,CN=Builtin,DC=dev,DC=test,DC=com,DC=ph}
    How can i retrieve the Group named CMCanadaRW and CMCanadaRD on the Attribute?
    Thanks

  • When dowloading itunes, constantly get error message 'Apple Mobile Device -could not be installed- Verify you have sufficient privileges to install system services.

    When downloading itunes to my pc, get error message 'Apple mobile device could not be installed - verify you have sufficient privileges to install system services'
    i am forced to abort/cancel. Can anyone help please?

    Me too. And if someone comes back on here with the same solution of "uninstall and re-install", please provide further advice after you have done that 3 times and the program still has the same problem in addition to the "failure to load the C runtime library" R6034 issue. I have removed itunes 3 times however I do not have permission to remove the program files/apple file and the uninstall doesn't remove it.
    You're not alone buddy.
    Frustrated.

  • Reinstalling iTunes and getting message "service 'apple mobile device'failed to start.Verify that you have sufficient privileges to start system services"

    Reinstalling iTunes and getting message "service 'apple mobile device'failed to start.Verify that you have sufficient privileges to start system services"

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Having trouble installing i-Tunes, getting a message 'appple mobile device failed to start, verify that you have failed to start sufficient privilages to start system devices.

    I tried to update i-Tunes and having failed a couple of times, un installed it. On trying to re-install it will not complete. I keep getting a message 'apple mobile device failed to start, verify that you have sufficient privileges to start system services'.
    Any suggestions please!

    turingtest2 post 01/2014: MSVCR80.dll missing, cannot install iTunes - https://discussions.apple.com/message/24618776
    iTunes for Windows: Missing MSVCR80.dll - https://sites.google.com/site/appleclubfhs/support/advice-and-articles/itunes-wi ndows-missing-msvcr80-dll - install as administrator.

  • HT1926 I can't re install iTunes because I get a error saying mobile device  could not start.

    I can't re-install iTunes because i get an error saying Mobile Device could not start?

    Same here TC, very annoying

  • TS1567 How do I start my apple mobile device service

    How do I start the apple mobile device service

    Depends on what version of windows you're running to give an accurate response... but it looks like you've posted the how to article as the title.... so i guess i'm a little confused as to why you're asking.
    Windows XP
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Choose Start > Control Panel.
    Inside the Control Panel, open Administrative Tools.
    Open Services.
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.
    Windows Vista or Windows 7
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Click the Windows Start button .
    In the Start Search field type Services.
    In the Programs section of the search results, Click "Services".
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.

  • I am trying to sync my iphone and im getting and error "apple mobile device service not started"

    I am trying to syn my iphone and im getting an error "apple mobile device service is not started" what do i do?

    See if this page helps you restart it, it also has instructions for setting it to start automatically : http://support.apple.com/kb/TS1567

  • How do i print from my mobile device

    how do i print from my mobile device?

    Hi,
    Your question can take many days to answer because this depends on your printer and also your mobile device(s).
    1. Firstly, you need to have a printer which supports this. You can check from the following list:
       http://h10025.www1.hp.com/ewfrf/wc/document?cc=hr&dlc=hr&docname=c02814760&lang=hr&lc=en&product=391...
    2. Secondly, your mobile device(s) must also support this. Please use information from the following link:
      http://www8.hp.com/us/en/products/smart-phones-handhelds-calculators/mobile-apps/app_details.html?ap... 
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HT4623 I cannot download iTunes. I keep getting this mesage" Apple Mobile Device failed to start".

    I cannot download iTunes. I keep getting this message"Apple Mobile Device failed to start".

    Follow the instructions of tt2 in discussion: https://discussions.apple.com/thread/5822086

  • After trying to up date Itune it has crashed and in trying to reinstall I get a message that mobile device faild to start and check if i have full authorization, where do I find how to get it????

    how do i get past a mobile device failed to start error.....while reinstalling itune in a pc???

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • How do i get my ipod touch to sync when i get the message apple mobile device service is not started

    every time i connect my touch to sync it i get this message "this ipod cannot be used because the apple mobile device service is not started" how do i fix that

    See Here
    AMDS for Mac
    http://support.apple.com/kb/ht1747
    AMDS for Windows
    http://support.apple.com/kb/TS1567

Maybe you are looking for