J2ME Eclipse, midp.zip

The Eclipse J2ME plug-in installation requires the file midp.zip from the J2ME Wireless Toolkit, but the file does not exist. How can I get this file (for MIDP2.0) ???
thank you

Well I downloaded it and tried to install it into Eclipse 3 M6, but Eclipse crashes after copying the pluginfiles:
Problem during startup. Check ".log" file in the ".metadata" directory of your workspace.
This log file doesn't hold something meaningfull to me:
!SESSION ----------------------------------------------------------------------
!ENTRY org.eclipse.core.launcher 4 0 Jan 26, 2004 16:16:30.580
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.NullPointerException
     at org.eclipse.ui.internal.registry.RegistryReader$1.compare(RegistryReader.java:102)
     at java.util.Arrays.mergeSort(Unknown Source)
     at java.util.Arrays.sort(Unknown Source)
     at java.util.Collections.sort(Unknown Source)
     at org.eclipse.ui.internal.registry.RegistryReader.orderExtensions(RegistryReader.java:107)
     at org.eclipse.ui.internal.registry.RegistryReader.readRegistry(RegistryReader.java:158)
     at org.eclipse.ui.internal.registry.WizardsRegistryReader.readWizards(WizardsRegistryReader.java:156)
     at org.eclipse.ui.internal.registry.NewWizardsRegistryReader.readWizards(NewWizardsRegistryReader.java:350)
     at org.eclipse.ui.internal.registry.NewWizardsRegistryReader.getWizardElements(NewWizardsRegistryReader.java:371)
     at org.eclipse.ui.actions.NewWizardMenu.hasExamples(NewWizardMenu.java:212)
     at org.eclipse.ui.actions.NewWizardMenu.fillMenu(NewWizardMenu.java:119)
     at org.eclipse.ui.actions.NewWizardMenu.fill(NewWizardMenu.java:196)
     at org.eclipse.jface.action.MenuManager.update(MenuManager.java:573)
     at org.eclipse.jface.action.MenuManager.update(MenuManager.java:462)
     at org.eclipse.jface.action.MenuManager.fill(MenuManager.java:210)
     at org.eclipse.jface.action.MenuManager.update(MenuManager.java:573)
     at org.eclipse.jface.action.MenuManager.update(MenuManager.java:462)
     at org.eclipse.jface.action.MenuManager.fill(MenuManager.java:210)
     at org.eclipse.jface.action.MenuManager.update(MenuManager.java:573)
     at org.eclipse.jface.action.MenuManager.update(MenuManager.java:462)
     at org.eclipse.jface.action.MenuManager.createMenuBar(MenuManager.java:147)
     at org.eclipse.jface.window.ApplicationWindow.configureShell(ApplicationWindow.java:294)
     at org.eclipse.ui.internal.WorkbenchWindow.configureShell(WorkbenchWindow.java:714)
     at org.eclipse.jface.window.Window.createShell(Window.java:353)
     at org.eclipse.jface.window.Window.create(Window.java:304)
     at org.eclipse.ui.internal.Workbench.openFirstTimeWindow(Workbench.java:1136)
     at org.eclipse.ui.internal.Workbench.init(Workbench.java:875)
     at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1459)
     at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:246)
     at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139)
     at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47)
     at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
     at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:85)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
     at java.lang.reflect.Method.invoke(Unknown Source)
     at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
     at org.eclipse.core.launcher.Main.run(Main.java:742)
     at org.eclipse.core.launcher.Main.main(Main.java:581)
Any ideas, what went wrong? I have to delete the plugin directory, the workspace directory and .config in order to make eclipse to start again, deleting the plugin only won't help.

Similar Messages

  • J2ME and MIDP beginner questions

    Can anyone recommend editor/IDE, toolkit etc. for coding, building and testing MIDP2.0 apps/games?
    Until now I've coded a game using J2SE. I used Forte 3.0 for coding and compiling, and IE5.5 for testing.
    Now I want to code mobile games/apps using J2ME and MIDP 2.0. What software do I need? I downloaded Sun ONE studio 4 ME and wireless toolkit 2.0, but are kind of struggeling with it :)
    Regards
    Hallvard

    Ok, I found out that the toolkit compiled the .java files and could bulid the .jar and .jad files, and then test the MIDLet on the emulator.
    But what about a good editor/IDE for MIDLets? In Sun ONE studio ME i finally managed to create a HelloWorld Midlet (with new project wizard), and build and run it in the toolkit.
    I also heard that Borland JBuilder Mobile Edition was a nice IDE for J2ME/MIDLets.
    Hallvard

  • 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

  • J2ME CLDC/MIDP emulator for Compaq iPAQ

    I would like to run J2ME CLDC with MIDP on my Compaq iPAQ 3650. I am NOT interested in PersonalJava at this time. I have two questions:
    1. Has anyone tried to put the J2ME Wireless Toolkit emulator on iPAQ, with or without Swing? J2ME WTK currently requires Swing, but it seems like that AWT may be used exclusively instead with some slight modifications.
    2. Does anyone know if there is an applet/AWT version of a J2ME CLDC/MIDP emulator that I can use for demos?
    Thanks.

    You can use the PalmOS emulator for winCE and install MIDP4PALM...

  • J2ME/Eclipse Pulsar/Polish UI - problem with Eclipse integration of JPolish

    Hi guys,
    I have J2ME SDK 3.0 here with Eclipse Pulsar (with mobile tools for java) and I want to use the J2ME Polish libraries.
    I install J2ME Polish 2.1.2 and set the eclipse home directory and the "Integrate mepose with eclipse" tick or something like that.
    Anyway, when I restart everything after the installation I can't see the plugin view in my eclipse.
    I also can't manage to manually download the plugin from Help>Install new Software>add url : ww.j2mepolish.org/mepose
    Any ideas ? I'm new to J2ME at all.
    Thank you in advance

    Likewize .. the Polish UI dont show in prefs. Tried with both win/mac but same result.
    Its seems like j2mepolish-2.1.2 and pulsar dont want to play ,(
    Why?
    cheers/k.

  • JAR packages with J2ME and MIDP devices

    Some devices that use J2ME have limitted the size of java applications.
    Here's an example, device has 120 Kb of memory, but max. size of downloadable app is 30 Kb. Is it possible to make JAR packages like in J2SE so that the the application (the classes of the app) are devided to two or more JARs and get it work. Since this is an easy workaround this limit.
    In J2SE grouping app into many JARs is possible if I am right.. JAR-docs propably quides my way... I am just wondering if this is possible J2ME
    P_TR

    you may use the special .jar tool to do it.
    www.pivotonic.com
    JavaJar1.1
    you can add files to .jar file like winzip.
    and you can edit and check correct the manifest file in JavaJar editor.
    why not try it?

  • A J2ME and MIDP 2 question

    2 Questions
    1. If I have a sprite on a layer but the layer manager is only showing a part of the layer and the sprite is not on that part of the screen are any resources being taken up by the sprite? If so what would be a good way to manage sprites (in this case enemies) that have a predetermined position on the much larger layer that need to be added to the layer when the screen is visible?
    2. What is the largest size I can use for a image that I am going to be using as my game area?

    1: yes, the sprite is using resources. it uses space from the offscreen buffer.
    i suppose that you are a game buff. there are two types of having bbiigg maps. one is zelda type (gbc). and the other is pokemon type(gbc). in zelda type, each screen is one layer, and you move from screen to screen by moving from layer to layer, with a 2d matrix of layers coming together to make a map.
    in pokemon type, there is one bbbbbbbbbbiiiiiiiiiigggggggggg layer through which you scroll smoothly. this is tougher. best is to have a condition for each sprite like isVisible. if it is false, suspend all animations for that sprite. if it is on the screen, start it's animation.
    You can divide this into smaller layers by using tricks like 'doors' through which you pass through to go to other layers. never have a layer too big because it will kill performance.
    for an image the largest size can be indeterminate, as long as you have the space for it on the heap. also only a part of it as large as the screen size can be displayed at once.
    hope this helps
    Arjun

  • Eclipse open project wizard - OUAF SDK 4.1 install

    After installing it for the 4th time, I give up. Please help me. (I start over with a saved image in case you wonder.)
    I follow the install guide word for word:
    http://www.box.net/shared/z86acgmb57oi9lo8f312
    When I finally get Eclipse to come up to open the project Wizard, I get this error message:
    "The chosen operation is not currently available."
    http://www.box.net/shared/l09aar6q00nc52znq56p
    Can someone please tell me what I am missing here?
    I downloaded the correct version of Hibernate, renamed it, put in in the right folder, got all the other files from one location to the other. Does it have to be that complicated?
    Sorry I am so frustrated but for the last week I did not get very far.
    Any help is greatly appreciated.
    Today I tried 2 more times with the exact same result. I believe there is something missing on the install guide as some of the screen prints are clearly not matching.
    If someone has been able to successfully install this, I like to know how please.
    I have made some notes just to be sure I follow along the install guide:
    SDK install notes - Used installation Guide
    7th time:
    Micro Focus Net Express Server 5.1 already installed.
    Exploded app server folders: configenv option 3
                        initialsetup right after
    1.) Started server, checked if I can log in.
    2.) Installing jdk-1_5_0_22-windows-i586-p for Eclipse later. (Eclipse requirement)
    3.) Starting SDK setup
         Destination: C:\SPL\SPLSDK
         App Server dir: c:\ouaf\demo
         Java dir: C:\spl\jdk1.6.0_26
         Install completed
    4.) Post Client Setup
         Copied the tools folder from C:\spl\SPLSDK\SDK\4.0.0.5
                        to: C:\ouaf\DEMO\SPLSDKCommon
         Copied the JTA.JAR from C:\ouaf\DEMO\splapp\standalone\lib
                   to: C:\ouaf\DEMO\SPLSDKCommon\tools
    5.) Install Eclipse:
         Copied Eclipse folder to C:\spl\SPLSDK\SDK\4.0.0.5
         Modified Eclipse.ini:
         -vm
         C:\Java\jre1.5.0_22\bin\javaw.exe
    6.) Launch Eclipse
         Modified startEclipse.bat: (NOT IN GUIDE)
         Created SPLSDK_ECLIPSE environment variable (NOT IN GUIDE!!)
         start %SPLSDK_ECLIPSE%\%ProgName% -vm C:\Java\jre1.5.0_22\bin\javaw -data %SPLSDK_ECLIPSE_WORKSPACE%
         Eclipse Starting
    7.) Installing Eclipse Plugin
         Click on Help - Install New Software
         Uncheck all checkboxes.
         Click ADD
         UtilitiesUpdateSite
         jar:file:/C:/ouaf/DEMO/SPLSDKCommon/tools/eclipse/OracleUtilitiesUpdateSite.zip!/
         Check OUAF Eclipse feature
         Click Next
         Review items to be installed - Click Next
         Accept terms - Finish
         Security Warning - Click OK
         After installation CLICK NO and CLOSE Ecplipse - IMPORTANT NOT TO RESTART.
         File- Exit
    8.) Copy the Hibernate-3.2.5.ga.jar to: (downloaded as suggested by install guide.)
         to: C:\spl\SPLSDK\SDK\4.0.0.5\eclipse\plugins\com.oracle.utilities.eclipseTools_4.0.0.201008311124\shared\lib
    9.) Start Ecplipse and configure project.
         NEVER WORKS...
    Edited by: LodestarGuy on Jul 9, 2011 9:31 AM

    Thank you for your reply.
    I did not remove the JDK, I just added another version.
    I am using the Eclipse version that is mentioned in the install guide that I should use.
    http://www.eclipse.org/downloads/packages/release/galileo/sr2
    If you suggest to try your version I will. May I ask what other steps you might have taken that I not in the install guide?
    Here is my ENVIRON.ini
    # LAST MODIFIED: 2011-07-09-1136
    # THIS IS A SYSTEM MODIFIED FILE!!!
    # DO NOT EDIT MANUALLY
    ADDITIONAL_RUNTIME_CLASSPATH=
    ADDITIONAL_STOP_WEBLOGIC=
    ADF_HOME=C:\oracle\ora112
    ANT_ADDITIONAL_OPT=
    ANT_HOME=C:\ouaf\DEMO\product\apache-ant
    ANT_OPT_MAX=800
    ANT_OPT_MIN=200
    BATCHDAEMON=false
    BATCHENABLED=false
    BATCHTHREADS=5
    BATCH_DBPASS=ENC(SP6lCJnf7A1rU32MnN9YCZ1Y4vMnvBIIVEh1YO/7NxY=)
    BATCH_DBUSER=cisadm
    BATCH_MEMORY_ADDITIONAL_OPT=
    BATCH_MEMORY_OPT_MAX=1024
    BATCH_MEMORY_OPT_MIN=512
    BATCH_MODE=DISTRIBUTED
    BATCH_RMI_PORT=6600
    BSN_APP=SPLService
    BSN_JMX_RMI_PORT_PERFORMANCE=
    BSN_JMX_SYSPASS=
    BSN_JMX_SYSUSER=
    BSN_WLHOST=MDM2008
    BSN_WLS_SVRNAME=myserver
    CHILD_JVM_JAVA_HOME=
    CHILD_JVM_PATH=
    CMPDB=oracle
    COBDIR=
    COBDIR_INPUT=
    COHERENCE_CLUSTER_ADDRESS=DEV_ADD
    COHERENCE_CLUSTER_MODE=dev
    COHERENCE_CLUSTER_NAME=DEV_CL
    COHERENCE_CLUSTER_PORT=6601
    DATABASE_HOME=C:\oracle\ora112
    DBCONNECTION=jdbc:oracle:thin:@MDM2008:1521:DEMO
    DBDRIVER=oracle.jdbc.driver.OracleDriver
    DBNAME=DEMO
    DBPASS=ENC(ogPohvqXJAup6DWK+CDeWETFqrYpPiYh4qFIy+t0gWA=)
    DBPASS_MDS=
    DBPASS_ORASDPM=
    DBPASS_OSB_WLS=
    DBPASS_SOAINFRA=
    DBPORT=1521
    DBSERVER=MDM2008
    DBURL_OSB=
    DBURL_SOA=
    DBUSER=cisadm
    DBUSER_MDS=
    DBUSER_ORASDPM=
    DBUSER_OSB=
    DBUSER_SOAINFRA=
    DB_OVERRIDE_CONNECTION=
    DESC=DEMO env
    DIALECT=org.hibernate.dialect.Oracle10gDialect
    DIRSEP=\
    DOC1BILLSCRIPT=_ccbPrint.cmd
    DOC1SCRIPT=_ccbPrintDoc.cmd
    ENCODING=true
    FW_VERSION=V4.1.0
    FW_VERSION_NUM=4.1.0
    GIS=true
    GIS_URL=
    GIS_WLSYSPASS=
    GIS_WLSYSUSER=
    HIBERNATE_JAR_DIR=C:\spl\hibernate3.3.2
    HIGHVALUE=\uF8FF
    JAVAENCODING=UTF8
    JAVA_HOME=C:\spl\jdk1.6.0_26
    JNDI_OSB=wlsbjmsrpDataSource
    JVMCOMMAND=C:/ouaf/DEMO/bin/splcobjrun.cmd
    JVMMEMORYARG=512
    JVM_ADDITIONAL_OPT=
    MODULES=base,d1,d2,cm
    MPLADMINPORT=6502
    MPLSTART=false
    MPL_DBPASS=ENC(JIQRvspFjaXM+/WVJS9GI4QSOyVe6+H63vZehYXygzc=)
    MPL_DBUSER=cisadm
    NLS_LANG=AMERICAN_AMERICA.AL32UTF8
    OIM_SPML_NAME_SPACE=http://xmlns.oracle.com/OIM/provisioning
    OIM_SPML_SOAP_DEBUG_SETTING=false
    OIM_SPML_SOAP_ELEMENT=sOAPElement
    OIM_SPML_UBER_SCHEMA_NAME=F1-IDMUser
    ONLINE_DISPLAY_HOME=
    ONSCONFIG=
    ONS_JAR_DIR=
    OPEN_SPML_ENABLED_ENV=false
    OPSYS=win64
    ORACLE_CLIENT_HOME=C:\oracle\ora112client
    ORACLE_HOME=C:\oracle\ora112
    OSB_HOME=
    OSB_HOST=MDM2008
    OSB_LOG_DIR=/spl/sploutput/osb
    OSB_PASS_WLS=
    OSB_PORT_NUMBER=
    OSB_USER=
    PERL_HOME=C:\oracle\ora112client\perl
    RJVM=false
    SOA_HOME=
    SOA_HOST=MDM2008
    SOA_PORT_NUMBER=
    SPLADMIN=Administrator
    SPLADMINGROUP=cisgrp
    SPLApp=SPLApp.war
    SPLDIR=C:\ouaf
    SPLDIROUT=c:\ouaf\sploutput
    SPLEBASE=C:\ouaf\DEMO
    SPLENVIRON=DEMO
    SPLOUTPUT=C:\ouaf\sploutput\DEMO
    SPLSERVICEAPP=SPLService
    SPLWAS=WLS
    SPLWEBAPP=SPLWeb
    STRIP_HTML_COMMENTS=false
    TOP_VERSION=V2.0.1
    TOP_VERSION_NUM=2.0.1
    WEB_ADDITIONAL_OPT=
    WEB_APP=SPLWeb
    WEB_CONTEXT_ROOT=ouaf
    WEB_FORM_LOGIN_ERROR_PAGE=/formLoginError.jsp
    WEB_FORM_LOGIN_PAGE=/loginPage.jsp
    WEB_ISAPPVIEWER=true
    WEB_ISDEVELOPMENT=false
    WEB_ISEXPANDED=true
    WEB_JMX_RMI_PORT_PERFORMANCE=
    WEB_MAXAGE=28800
    WEB_MAXAGEI=28800
    WEB_MEMORY_OPT_MAX=1024
    WEB_MEMORY_OPT_MAXPERMSIZE=300
    WEB_MEMORY_OPT_MIN=1024
    WEB_PRELOADALL=false
    WEB_PRINCIPAL_NAME=cisusers
    WEB_ROLE_NAME=cisusers
    WEB_SERVER_HOME=C:\oracle\wlserver_10.3
    WEB_SPLPASS=ENC(nKmtsqF60GbiM50OoQt1T2vuhZY89tIDrytnZ7RAaLE=)
    WEB_SPLUSER=sysuser
    WEB_WLAUTHMETHOD=FORM
    WEB_WLHOST=MDM2008
    WEB_WLPAGECHECKSECONDS=43200
    WEB_WLPORT=6500
    WEB_WLSSLPORT=
    WEB_WLSYSPASS=ENC(BJWbp4JQs5VFnc9DHM1zoLp15wjn44JmfCMYHoNXUrE=)
    WEB_WLSYSUSER=sysuser
    WEB_WLS_SVRNAME=myserver
    WLS_ADMIN_PORT=
    WLS_WEB_WLSYSPASS={3DES}gEa2D33Ly9O+cgXvZgy3Ug==
    WLS_WEB_WLSYSUSER={3DES}ip2hoc3F8k4=
    WL_HOME=C:\oracle\wlserver_10.3
    XAIApp=XAIApp.war
    XAI_DBPASS=ENC(AAfsXjyhFabZ5Hpt8Jt44SCZX2sRliKWh8FiMjTx18E=)
    XAI_DBUSER=cisadm
    appViewer=appViewer.war
    help=help.war

  • J2ME Help for a Masters Project

    Hi All
    I really need help in relation to J2ME which i am doing for my masters project.I have a web page which resides on my personal web server for windows. I want to connect to this page using J2ME and MIDP. The address of this page is http://localhost/Barry/Query1_1.HTML. This page contains a text box where i enter a number and hit the run query button and this brings me to an asp page with the results from a database displayed.
    Basically all i need to know is how do i connect to this page. I would be really grateful if some kind person would email me at [email protected] with the answer and the code needed.Cheers

    have you tried using java.net.URL?

  • How can I send a MIDP through MMS??

    Hi there,
    I need to know how can I send a JAR through MMS,
    I'm not talking about WMA API..... please, understand that I don't
    want do send a MMS through JAVA or J2ME or MIDP.
    I want to send my compiled midp in a JAR, in a MMS.

    https://itunes.apple.com/us/app/id314894105?mt=8
    https://itunes.apple.com/us/app/id306273816?mt=8
    They have some limitations though. They have paid versions that remove those limitations

  • Realize a J2ME reporting thin client (for PDA) with XML for Analysis

    I'd create a reporting thin client (on PDA or smartphone) that uses the web service XMLA. How I can implement it? Can I use J2ME ?
    Can i have more informations ??

    I haven't tried generating stubs from WTK, but you could also try to access your WS by programming it. One of the solutions available for most of J2ME devices (MIDP/CLDC) is kSOAP (<a href="http://www.ksoap.org">www.ksoap.org</a>). I've tested it with Apache Axis and .NET-based WS servers - it works just fine, so I assume it should be working with SAP as well. This two articles might be valuable for you:
    http://www.javaworld.com/javaworld/jw-08-2002/jw-0823-wireless.html
    http://java.sys-con.com/read/37193.htm?CFID=671691&CFTOKEN=A29B9B9F-EE05-1072-E2866AEB2CFB4A79

  • Install J9 for MIDP on Pocket PC windowns mobile 2002

    I'm a newbie to Pocket PC platform. Somebody please help me. I've been searching online everywhere for days.
    I have a j2me CLDC/MIDP application, built by Ant/Antenna. It works well on phone. Now i'd like to port the jad and jar files to Pocket PC. My Pocket PC is manufactured by Symbol, with Windows mobile 2002 OS installed. I know I should install one kind of VM on device first. Here I chose IBM J9. I tried to install "WebSphere Everyplace Micro Environment 5.7.2 MIDP 2.0 for Windows Mobile 2003", I followed the installation instructions and there are following directories and files generated on device:
    Program Files\J9\MIDP20\bin:
    emulator.exe, j9midp20.exe, java.properties
    Program Files\J9\MIDP20\lib:
    j2me.keystore, security.policy, jclMidp20\AMS.jad, jclMIDP20\jclMIDP20.jxe, jclMidp20\ext
    Program Files\J9\MIDP20\examples:
    GolfScoreTrackerSuite.jad, GolfScoreTracker.jar, GolfScoreTrackerSuite.lnk
    Then I tried to run the example program. I clicked GolfScoreTrackerSuite.lnk, there popped up an emulator.exe error window: "Cannot find 'emulator' (or one of its components). Make sure the path and filename are correct and all the required libraries are available."
    can somebody please tell me what went wrong? Is it because my OS (windows mobile 2002) is too old? why there is no J9.exe in Program Files\J9\MIDP20\bin directory? According to installation help doc, the following files should also reside in Program Files\J9\MIDP20\bin:
    - ivemidp20_22.dll
    - j9mjit22.dll
    - j9mjitd22.dll
    - jclmidp20_22.dll
    But i don't have the above files by automatically installation of CAB file.

    Hello
    You should install the Mobile Server and the Mobile Development Kit on a desktop computer. Then, connect your Pocket PC to the desktop computer, call the ActiveSync program and select "Add/Remove programs". The Oracle Lite for Pocket PC option must appear on screen.
    []s Alexandre Murakami

  • J2me and mp3 fiiles

    hello, i had trouble with streaming mp3 files from wirelesstolkit2.2 aplication.
    my question, is j2me with MIDP 2.0 support mp3 file streaming?
    thanks,
    mdani

    Hi, I have also encountered same kind of problem. i tried with simple url like http://localhost/test/200.mp3. It did not work in my application. so i have used the same url in the enter url option of the demo program. Even this did not work. Can anyone please let me know, how to play mp3 files.
    I had used tomcat to serve the requested operation. if i enter the above url in browser then its opening, but not in MIDP application.
    I got the following exception.
    javax.microedition.media.MediaException: Player cannot be created for http://localhost/test/200.mp3.
    Please help me out.
    mail id: [email protected]
    thanks in advance
    pavan.

  • Smtp connection in j2me

    hi all
    can any body plz tell me abt how to create smtp connection using j2me coz midp 1.0 supports only httpconnection i have to make an applocation as my univ project which will send mail to a mail server can anybody help me? plz
    is it feasible to make streamconnection or contentconnection to transfer mails......other than socker connection...coz my device dont suuport socket connection of midp2.0
    hoping for reply...
    aqeel

    StreamConnection connection;
    InputStreamReader _in;
    OutputStreamWriter _out;
    try {
    connection = (StreamConnection)Connector.open("socket://my.mailserver.com ":25");
    _in = new InputStreamReader(connection.openInputStream());
    _out = new OutputStreamWriter(connection.openOutputStream());
    That should do it to get you the connection and in/out streams. You connect to smtp server on port 25. Now you need to compose your message content to send out...
    _out.write(email data);
    and read responses from smtp server...
    _in.read(...);
    There's lots on the web if you search for "java smtp port 25"
    Eric

  • Eclipse native report viewer

    <p>Does CR for Eclipse include a viewer to display reports natively within an Eclipse-based application frame window? Meaning, not in a web browser, but instead in an "editor" type Eclipse view. If this is not possible currently, are there plans for adding this capability? </p><p>Thanks,</p><p>Susan </p>

    <p>Hi Susan,</p><p>            Yes we do have a thick-client viewer. Currently, this is not a SWT viewer so you will need to use the SWT-AWT bridge. I hope to have a whitepaper published demonstrating how to build an SWT/RCP application using this viewer. However, if you feel comfortable looking through code to see how this is done you can download a sample RCP application from here:</p><p><a href="http://ftp1.businessobjects.com/outgoing/StrategicAlliance/eclipse/RCPDemo.zip">http://ftp1.businessobjects.com/outgoing/StrategicAlliance/eclipse/RCPDemo.zip </a></p><p>After you import this project into your Eclipse environment you will want to look at the View class. This is where most of the code is contained.</p><p>Let me know if you have further questions about how to do this.</p><p>Regards,<br />Sean<br /></p>

Maybe you are looking for