No MIDlet Suites found.

The below is the error message that pops up while I run the Tiny sample app from OTA provisioning.
"No MIDlet Suites found.Check the URL to make sure it is correct."
Although the app runs perfectly fine from the browser as well -http://myserver/myvirtualdirectory/tiny.html.
I am running this on IIS. I am novice in this area, so just wanted to start on J2ME so started with sample app, but failed make any progress.
Any help would be of great help to me
Rgds
Ram

More info on what .jad file and the .html file i have.
Apart from the below there is a jar file at the same location where these files are present.( in the iis virtual directory called "midlets" )
.jad file contents
MIDlet-1: Tiny, Tiny.png, TinyMIDlet
MIDlet-Jar-Size: 1145
MIDlet-Jar-URL: http://localhost/midlets/Tiny.jar
MIDlet-Name: Tiny
MIDlet-Vendor: Unknown
MIDlet-Version: 1.0
MicroEdition-Configuration: CLDC-1.1
MicroEdition-Profile: MIDP-2.1
.html file contents
<html>
<body>
Test
</body>
<html>
rgds,
Ram

Similar Messages

  • No Midlet Suites Found. Check the URL to make sure it is correct

    hi,
    i am very much in need of solution so plz respond as early as possible
    i am trying to simulate OTA provisioning through J2ME Wireless Toolkit for this i am using Apache HTTP Server Version 1.3
    i placed the .jad files and .jar files in htdocs directory and i added the below two lines to httpd.config file
    AddType text/vnd.sun.j2me.app-descriptor .jad
    AddType application/java-archive .jar
    i changed the MIDlet-Jar-URL property in .jad file to point to .jar file
    i restarted the Apache server and started the toolkit when i pointed to the .jad the error i got is "No Midlet Suites Found. Check the URL to make sure it is correct"
    can any one help me out in finding what i missed in the process of installing the midlet suite through OTA provisioning in the toolkit

    try adding these lines in the configuration file as applicable to your server
    <mime-mapping>
    <extension>jar</extension>
    <mime-type>application/java-archive</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jad</extension>
    <mime-type>text/vnd.sun.j2me.app-descriptor</mime-type>
    </mime-mapping>
    Also, check if your JAD file contains the following information
    MIDlet-Jar-URL: http://<server_ip_or_name>:<port_if_other_than_80>/<context_root>/<name_of_your_file.jar>

  • Error: no MIDlet Suites found when install

    I have runned Java Application Manager(JAM) with entering the following command:
    emulator -Xjam
    then click the install soft button;enter thr URL:http://localhost:8080/demos.jad . raise an error:No MIDlet Suites found.I have placed demos.jar and demos.jad on the server.
    why?
    thanks.

    You have to indicate the location of a web page that contains an absolute link to the jad file:
    The greatest Application Ever
    not the name of the jad file.
    Once the emulator gets to the page, you will be prompted to install "The Greatest Application Ever".

  • Trojan installation over trusted Midlet suite?

    hello,
    imagine i've signed my jar and is installed with no problem. Could a malign Midlet, which claims to be part of the original Midlet Suite be installed over the trusted one? I mean, the malign midlet has no MIDlet-Jar-RSA-SHA1 property in its JAD, so according with MIDP2.0 specification:
    "When an MIDlet suite is downloaded, the device MUST check if authentication is required. If the attribute MIDlet-Jar-RSA-SHA1 is present in he application descriptor then the JAR MUST be authenticated by verifying the signer certificates and JAR signature as below.
    Application descriptors without the MIDlet-Jar-RSA-SHA1 attribute are not authenticated but are installed and invoked as untrusted MIDlet suites."
    So, could that second midlet be installed, even as an Untrusted one?
    This second one, could read the shared RMS storage of the host Midlet Suite.
    thanks.

    Hey Friend.
    I'm also facing same problem. I also use socket to connect to remote server While connection to server i faced 2 symbian OS errors >Error -33(timeout) and then Error -5105(no route found).
    Please, if you get solution then inform me.
    My email: [email protected]

  • Accessing RMS of a different Midlet Suite

    Hi,
    I read the following in a document released from Nokia on MIDP 2.0.
    "MIDlets are allowed to create multiple record stores, as long as they have different names, and MIDlets
    can access record stores relating to other MIDlets within the same suite. Also, if explicit permission is
    given, MIDlets within other suites can also access the record store (a new feature in MIDP 2.0)."
    I would like to access an RMS in another MIDlet suite from my midlet. Does anybody know how I would do this or where I could find more information on this?? Also what does it mean when it says "explicit permission".
    My motivation behind this question is that I would like to maintain the data on my application even if a new version of the application is released. I take it that is I release a new version of my application that I would have to install a new midlet suite and that this would overwrite the existing RMS in the MIDlet suite. Therefore by having my RMS in a seperate MIDlet suite I can maintain my data. Is all of this correct?? Would this be the best way to approach this problem??
    Thanks,
    Brian

    Hi,
    Thanks for both of your replies!! i have tested this and found it to be sucessful making my task a lot easier. :-)
    Anyhow my other question regarding this is - on phones that ask you if you want the user data to persist.. is it possible to ensure that the user data is always saved.. thus removing this prompt or is this prompt standard on the device and cannot be changed.
    Thanks,
    Brian

  • Communication between MIDlets within the MIDlet suite.

    Hi Friends,
    I'm using WTK 2.2. I'm planning to have two MIDlets within the same MIDlet suite.
    I had two MIDlet files but after creating the Jar package , In the display screen, Only one MIDlet is displayed for launching.
    Please guide me the steps. If there is a local variable int i; then, how I do check the value of the variable between the different MIDlets?
    Please guide me on the steps .
    Thanks,
    Ravi.

    Here's the source code:
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.lcdui.*;
    public class A extends MIDlet
         public int i=10;
         public A()
         protected void startApp()
         protected void pauseApp()
         protected void destroyApp(boolean unconditional)
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.lcdui.*;
    public class B extends MIDlet
         public B()
         protected void startApp()
              A a=new A();
              a.i=10;
              System.out.println(a.i); //throws SecurityException at this line.
         protected void pauseApp()
         protected void destroyApp(boolean unconditional)
    }

  • J2ME toolkit (midlet suit debugging problem)

    Hi,
    I installed the SUN's J2ME wireless toolkit and made all the necessary configurations. I can run my midlet suit using any emulator. I can deploy my project into a jad file.
    However, I cannot debug my project.
    When I try to debug using any emulator I get:
    "KVM not ready" message and I'm stuck.
    Did anybody experience this issue before?
    Thanks

    It probably comes from the sequence you use to start debugger and debuggee. A MIDlet Suite will necessary be remote debugged. Please see the viewlets at http://otn.oracle.com/products/jdev/htdocs/partners/addins/exchange/j2me/content.html, scroll at the bottom of the page, and click "Dbug the MIDlet Suite".
    Please feel free to ping me directly at [email protected] if you need more info.

  • The storage name for the MIDlet suite was not given

    I am trying to RUN my application (MIDP 2.0 CLDC1.0) using OTA option in net beans IDE.
    But it gives this message
    **The storage name for the MIDlet suite was not given**
    and abort the execution
    I am using Push registry.
    Also I am sending and receiving sms through mobile.
    Please help me in this topic?

    midlet1, I asked you less than 12 hours ago not to post to old threads that are long dead.
    [http://forums.sun.com/thread.jspa?threadID=5353188]
    If you continue to ignore the request, your user account is liable to be blocked.
    I'm locking this thread now.
    db

  • How to access midlet suite from ms-dos?

    I tried to type in dos:
    "j2mer2 MyCanvasMidlet"
    but it doesn't appear the screen "select one to launch" for the list of midlets in the midlet suite.
    it can display the screen when I user the tool kit though.

    you can't do this (run a midlet from dos).
    use the j2me wireless toolkit.

  • Installing my MIDlet suite to my Nokia Mobile (Help .!)

    I have created a MIDlet suite with 4 MIDlets in it..
    I used the Sun Wireless ToolKit in NetBeans 6.0
    Now, I want the MIDlet suite to run on my Nokia Mobile which I own.
    What is the process .?
    And do I have to use any specialized Nokia tool kit for this purpose ? (Since I want the MIDlet to run in my Nokia 6070)
    Please help me.

    As long as you app complies to the requirements set by Nokia, you should be able to load it up without problems. Nokia is great by giving very detailed info on these aspects. I've loaded my Nokia with specific apps tailored with Nokia SDKs and I have used example apps from Sun. There might be other considerations, but the MIDP version and the CLDC version are the main constraints. Everything depends on what you want to do with the app...
    Cheers!
    edit: Another main constraint is the size of the .jar file. Nokia suggests using a compression tool.
    Edited by: HunterCottage on May 20, 2008 8:52 AM

  • V600 Midlet Suite Missing Midlet and Icons

    I developed a Midlet suite application about 3 years ago and have not used it for at least 2 years. I just rebuilt the suite with Java Studio and it runs perfectly in the emulators. When I tried to download the suite via a WAP page using T-mobile on a Motorola V600 the application does not load correctly. The suite has 4 Midlets and only 3 show up in the phone. Also all of the suite icons are missing. It�s been a while so how do I debug a Midlet suite on a Motorola phone? Are there special issues running an application on these phones? TIA.

    I seem to recall motorola phones only ever show the 1st 3 midlets in a suite.
    They are also sensitive to icon size - I think the correct size is 15x15 for motorola's.

  • Copying a signed MIDlet suite from one phone to another

    Hi
    From the MIDP2 spec I understand that the phone platform must implement provisions preventing an installed signed MIDlet suite from being tampered with.
    What if somebody copies a memory card holding a signed MIDlet to another memory card, and then installs the new memory card to another phone. Does MIDP2 prevent such MIDlet duplication?
    Silvano

    Ah.  That worked perfectly.
    Awarding points.
    Thank you.

  • How to create a MIDlet suite??

    hello everyone !! I have an easy (I hope) question.How can I create the Midlet suite. For Instance I have to midlets and I want them to belong to the same midle suite in order to be able to access the private data storage (in some sense common for both of them - some recordStore ). Thank you for any help. All the best:)

    Hi
    Make sure u seperate each midlets package name and U have to specify the both midlet names in the jad file instead of one.Name jad nad jar files appropriately which suits for both names.For ex in my it was MeasurmentHealthCalculator since i have two midlets Measurement and HealthCalculator
    Ravi

  • Start MIDlet A from MIDlet B in the Same MIDlet Suite?

    Salam,
    I am working on an application in which i want MIDlet A to be started when i select a command from MIDlet B. Both the MIDlets are in the same suite.
    Please tell me the way how can i do that. I am still a beginner...
    Wasif Ehsan.

    Hi
    Have you tried searching this forum for an answer on your problem? Here is one thread that I found which seems to have a solution: http://forum.java.sun.com/thread.jspa?forumID=76&threadID=290808
    Mihai

  • Automatic removing Midlet suite by another Midlet without user intervention

    I would like to use a Midlet to remove another Midlet which is already installed on the device.
    Could I do this? Are there any methods for doing this?
    Please help me!
    Thank you in advance.

    That's a different matter. The second MIDlet is launched by the Application Manager at the scheduled time, not by the MIDlet that books the PushRegistry alarm. And there's no way you can possibly
    go back to my midlet again.Apart from which, many devices will ask the user's permission before launching an application scheduled by PushRegistry, so even the first part of your requirement can't be guaranteed to be seamless.
    Why do you think you need this? There may be an easier solution, like using related classes with only one MIDlet.
    db

Maybe you are looking for