Deploying midlets to nokia ngage

hello everyone,
m trying to deploy a very simple helloMidlet program to my nokia ngage
cellphone.. on installing the file, it gives a system error message and quits. wats may be the possible reasons for this ?

i got the solution !!! had to set the target platform to MIDP1.0 and things worked just fine... but how do i use bluetooth is still a problem.. does anyone have the solution ?

Similar Messages

  • Deploying midlets over bluetooth from linux

    Hi,
    Does anyone have any advice for deploying midlets over bluetooth from linux.
    I am using a Nokia 6230 phone and I am running fedora core 1.
    using gnome-obex-send i can send any file to the phone and it will pick it up. It doesn't know what to do with .jad and .jar files though, and asks me if I want to store them in my media folders.
    Is this a fault with the phone or the method I am using to send the midlet?
    any help much appreciated,
    thanks,
    -matt

    Hi,
    I tried to deploy the application only from a Window PC. I send the jar only throug "Send File" and the phone receives it as a message. Then I click on the message and I can install the jar. I tried only with Nokia 6600
    Hope this can help
    Luca

  • Wht is x-midlet in nokia?

    Can u tell me Wht is x-midlet in nokia phones?

    afaik it's a java filetype.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • I install MIDlet on Nokia and Motorola Mobiles But....

    I install MIDlet on Nokia and Motorola Mobiles But on Nokia it shows all directories/files but on Motorola MIDlet even not started.
    My Application is for File Uploder and Downloader from web server.
    Help Urgently.

    hi
    r u checking ur code on emulator of motorola , if yes check on device bec. motorala emulators doesnt have connection rights.
    regards
    akash
    Indiagames Ltd
    India
    [email protected]

  • Installing of midlets onto Nokia 7210

    I've tried to download some midlets from http://midlet.org/ & then install to my N7210 via IR. This however doesn't seems to work. However, when I make the same attempt using the Nokia PC Suite, it works.
    Is there a specific protocol used by the Nokia PC Suite? Does this means that I'd have problems with OTA on Nokia's mobile phones? What about other mobile phones (brands), can I just attempt to transfer the JAR/JAD files via IR onto them?
    Thanks.

    You can not send games to teh S40 Nokia phones with the IR port this doesnt necessarily mean there will be problems doing an OTA downlaod.

  • How to install MIDlet on Nokia E62?

    Hi Friends,
    I have tested my J2ME application on "Sun WTK via OTA". Now I want to test it on actual device. How to do that?
    Do I need to sign MIDlet? How to do signing of MIDlet?
    Thanks
    vikas khengare

    Hi, neetujain. Glad to see you here at the Nokia Forum. Upon checking the Nokia Store, this app is not available for your phone. May we know where did you get the installer file and the exact error message? Thanks!

  • Deploying Midlets on to a Cellphone

    I have developed Midlet that works perfectly on the simulator provided with the J2ME Kit. Now I want to deploy the midlet from my PC to a cell phone. How can that be achived ?

    Some mobile phones come with a serial cable that allows you to transfer midlets from PC to phone. Other than that, the next is via OTA -- put it in a WAP site and download it to a phone.

  • Problem with relaunching midlet on nokia 6681

    hi,
    in my application i m using 2 png images each of 1Kb , these images are on 10 screens . i m creating images in a base class n extending all other classes from it. so on nokia 6681 it works on first execution however ,while relaunching same midlet it is not running at all. i have to swich off n swich on the device again. it works fine when i remove images from base class.
    the application is working properly on other devices .
    do reply if any suggestion

    and some problem in the music player with arabic font...
    http://img338.imageshack.us/img338/7371/screenshot0005lt7.jpg
    http://img261.imageshack.us/img261/5168/screenshot0004ee8.jpg

  • J2ME MIDP 2.0  start on boot midlet on Nokia 6600

    Hi All
    I wish to auto-start my J2ME application on Nokia 6600, using PushRegistry.
    However, every time when the application auto-starts, it asks user
    "Allow application xxxx to start automatically when needed?". This is
    annoying, because I wish
    my application started quietly in the background.
    It makes sense for the question to be asked for the first time after
    installation (just like
    the question for unsigned jar). But it is unnecessary to ask this question
    every time.
    Anyone has suggestion on how to mute this question? Thanks.
    Atul Gajbhiye

    Seems as if Nokia 6600 does not supports CLDC 1.1, right click on project properties, change CLDC version to 1.0 & things will start working :)
    makuchaku

  • Nokia Ngage Application

    Does anyone know when NGage will be available? It's been a while now...
    That's right people, I'm back. Where have I been? I have been getting a life, away from this electric madness.

    It's not actually available on N81. Their was just a trial period for it and it's already ended. NGage should work on most NSeries devices.
    That's right people, I'm back. Where have I been? I have been getting a life, away from this electric madness.

  • Bluetooth connection not working on US Nokia phones from J2ME Midlet (MIDP

    Hi All,
    We are developing a J2ME midlet (MIDP 2.0 ,CLDC 1.1)which makes bluetooth connection to other devices.The bluetooth
    connection is working perfectly on indian nokia phones with Airtel as carrier.But when we deploy the same midlet on Nokia E71
    US phone with carrier as AT&T ,the bluetooth connection is not working.The sample code is as follows:
    public void run(){
    try{
    StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);
    // open an input stream to get some data
    InputStream in = connection.openInputStream();
    byte[] serialData;
    readData = true;
    while(readData == true){
    int lengthavai=0;
    lengthavai = in.available();
    if(lengthavai > 0){
    serialData = new byte[lengthavai];
    int length = in.read(serialData);
    System.out.println("data read: " + new String(serialData));
    dataViewForm.append(new String(serialData));
    in.close();
    connection.close();
    }catch(IOException ioe){
    ioe.printStackTrace();
    when we try to connect on US Phones],the execution hangs at the following line of code:
    StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);
    No exception is caught.
    Our midlet is not signed.
    In the Forums it is said that the problem is with the unsigned midlet.AS some of the US carriers block the secure API usage
    on Unsigned midlet.
    But our question is, if we buy a code signing certificate from Verisign or Thawte and sign the midlet, will this problem be solved.
    Any other alternative solutions for this ???
    Immediate help will be appreciated.
    Thanks,
    Yash

    You might want to read this before buying a certificate:
    http://javablog.co.uk/2007/08/09/how-midlet-signing-is-killing-j2me/
    It's not my blog, but I pretty much agree with what it says. Unfortunately the network operators can control the access 3rd party trusted certificates have, so even if you sign with Verisign for example, the signed midlet may not have any more privileges than an unsigned midlet, depending on network. They do this so that only midlets signed with one of their own certificates have unrestricted privileges forcing anyone who wants a useful application to buy it from the network instead of downloading an equivalent freeware version from Getjar for example. Some networks are worse than others, so signing your midlet will allow it to work on more phones than an unsigned midlet. I think Verisign have some info on AT&T on their website.
    The whole MIDP specification for security is a joke, IMHO. I don't mind unsigned midlets flashing up a warning once during an application. Writing 20 files, for example, will give 40 security warnings for reading writing data which is ridiculous, as the user obviously either trusts the app or he doesn't. No one runs an app that they only sometimes trust.
    As far as I know the only mobile manufacturer so far to see sense is Sony Ericsson. All of their new phones from Java platform 7 onwards allow unsigned applications access to the file system, bluetooth etc with just one warning when the applications starts.
    Andy

  • Midlet upload to nokia phone

    Hi All,
    I have develped application. I have installed jar files of midlet in Nokia N75 mobil phone. It Ishows installed in it s application but It is not displaying midlet in the phone menu. Plz tell why it shows installed but not displaying midlet in menu..
    Plz reply its urgent
    Thanks,

    Hi All,
    I am not able to figure out this problem if somebody knows this answer plz reply..
    Thanks,
    [email protected]

  • NetBeans Midlet signing not working for Sony Ericsson M600i

    Hi,
    I'm developing an midlet that uses FileConnection class extensively. I intend to deploy the midlet on Sony Ericsson M600i. I want to make my Midlet a trusted one so that the annoying warning popups stop each time access the device filesystem.
    I created a keystore in netbeans and created a certificate using keytool using that keystore. Then I installed the certificate on the device. When I tried to depoly the midlet it says 'security check failed. cant install'.
    the device has MIDP 2.0 and CLDC 1.1
    pls explain how to make my Midlet trusted.
    thank you in advance

    pls explain how to make my Midlet trusted.You have to purchase a certificate (Verisign, Thawte...). NetBeans and WTK self-generated certificates are only for testing on the emulator and are not recognized by any handset (the root certificate is not available in the certificate store). And then, whether your purchased certificate is recognized by a specific device is both manufacturer/model and carrier dependent.
    For self-signing MIDlets for Nokia Series 60 handsets, see SD's topic [n]Free Self Signing Midlet for Series 60 3'rd Edition at
    {color:#0000ff}http://forum.java.sun.com/thread.jspa?threadID=5212743{color}
    Haven't come across anything similar for SE phones though.
    cheers, Darryl

  • Midlet Running in the Emulator but not in the phone?

    Hi everybody,
    I have developped a Midlet using the Sun Wirelees Toolkit, the midlet reads results from a Servlet and print it on a TextBox. It works fine in the emulator but when I deployed it to Nokia 6600 it prints NULL.
    I really don�t know what�s the problem. Bytheway I used thread for sending data from Midlet to Servlet.
    Any Suggestions:) ?
    Thanks for your time and interest,

    I suggest that you find out what the problem is ;)
    Really, we can't smell whats wrong. It could be lots of things...
    Try to de bug the application on the device. The "best" way is to use System.out.println statements, of use a textbox to print the messages. Than check where it goes wrong, and why..

  • No_ams_auth error when deploying in MIDP 2.0 Real Mobile

    Hello,
    I have a really simple MIDlet, which has only 2 classes, and I can deploy it in Nokia 7650 and P800
    (MIDP 1.0 mobile). But, when I try to deploy it in the Nokia 6600 (MIDP 2.0 mobile). I get an ...'no_ams_auth' error appearing in the mobile.
    I have tried to run the MIDlet in an emulator of MIDP 2.0 and the application list of the emulator
    appears empty, as it could not deploy the MIDlet in the emulator.
    What am I making wrong?
    It is needed any special parameter in the jar and jad?
    Thanks in advance
    H�ctor Bern�

    Hi,
    You are deploying Midp1.0 app on MIDP2.0 version.
    You have to change the default attributes in .jad file.
    MicroEdition-Profile     MIDP-1.0 to 2.0
    HTH
    phani

Maybe you are looking for

  • When printing form using Adobe Acrobat X, I get squares over my italic text

    Hi, I have created an Adobe Form using Adobe Acrobat XI Pro and just printed it to check whether this works and the following occured: - When printing my 14 page document using adobe reader everything looked great - When printing my 14 page document

  • How do I sign documents from my E-mail

    I would like to sign documents using electronic signiture, How would I go about doing that ?

  • Syntax for existing function-based index

    Hi: I am on 10.2.0.3. Listed below is the list of indexes and index columns on one of the tables. Aparantly one of the columns (SYS_NC00220$ ) is in reality a function-based index. Anybody knows how to get SQL syntax for this index? TIA. INDEX_NAME U

  • Validation mechanism in SAP XI/PI

    Dear All I am new to SAP XI. I need to validate incoming data. Recieved via File adaptor. Validation takes place with SAP z tables and update Oracle database after validation. How can i do this? After recieving file how to validate it with SAP tables

  • RBL lists with Apple Mail

    Is it possible to use RBL lists with Apple Mail? Message was edited by: MacDaniel