Please package Java ME SDK 3.0 for Linux/Unix

Hi Oracle guys!
Please package Java ME SDK 3.0 for Linux/Unix soon!
It would be of benefit both to us developers, and to Oracle.
Thanks!

user8771084 wrote:
Señores Oracle si ustedes no pueden desarrollar Java ME SDK 3.0 for Linux/Unix no importa!!!, igual sabemos que no están a la altura de Sun Microsystems ni de la comunidad de Linux/GNU.
Si ustedes se deciden lanzar la versión Java ME SDK 3.0 for Linux/Unix se lo agradeceremos, recuerde que Linux/GNU dia a dia crece mas y mas, y es un mercado que se debe cuidar.Translated to English:
Oracle Gentlemen if you can not develop Java ME SDK 3.0 for Linux / Unix does not matter!,
As we know are not up to Sun Microsystems or the community of Linux / GNU.
If you decide to launch the Java ME SDK 3.0 for Linux / Unix appreciate it, remember that GNU / Linux is growing day by day more and more, and is a market that needs to be nurtured.

Similar Messages

  • Java ME SDK 3.x for Linux/Unix

    Hi!
    There was talk the last couple of years of a Linux/Unix release for the Java ME SDK 3.x,
    but as of today I see nothing like that at the download site.
    Does anybody know the state of this?
    A Linux/Unix SDK would be very helpful to me in my development work!
    (This is a ping to users, who themselves are Oracle Product Development personnel!)

    Yes, a real need for many developers.
    cherrs

  • Is there any plan to release Java ME SDK 3.0 for linux?

    Hi
    Thank you for reading my post.
    Can someone please let me know when will Sun release Java ME SDK for linux?
    Thanks

    Note: This thread was originally posted in the [Sun Java Wireless Toolkit|http://forums.sun.com/forum.jspa?forumID=82] forum, but moved to this forum for closer topic alignment.

  • Schedule for Java ME SDK 3.0 for Linux?

    Hi,
    thank you for Java ME, we are using it since many years with on Linux development platform.
    Currently we plan to use the Sensor API, which is missing in WTK2.5.2 for Linux.
    What are the current plans for Linux?
    thanks,
    Marcel

    Another +1
    Come on Oracle, get it together. And why are you being so evasive about answering the OP's question? Is there a release schedule for Linux or not? For some reason I suspect not and you're desperately trying to avoid saying so.
    If there's no J2ME for linux there's no point me trying to write Java mobile apps any more. I suspect I will not be the only person to switch to writing Android apps instead. Google seem to understand and respect their Linux programmers.

  • C/C++ version of LDAP SDK 4.1 for Linux platform

    Hi All,
    I am looking for C/C++ version of LDAP SDK 4.1 for Linux platform.
    Do you have any pointer from where I could download this library?
    Thanks in Advance,
    Shyam Shukla

    The only version available on sun.com is LDAP C-SDK 5.08 <http://www.sun.com/download/products.xml?id=3ec28dbd>
    The 4.1 version is very old and no longer available.
    Note that future versions of the LDAP C-SDK will be directly available from Mozilla.org as we've completed the merge of all of our changes back to Mozilla.org (this is with LDAP C-SDK 6.0.2).
    Builds are not available yet, but should be soon.
    Regards,
    Ludovic.

  • Java ME SDK 3.0 for MacOS: MediaException when capturing

    Dear all,
    I'm currently developing a J2ME media application over MacOS (MacBook Pro, OS version 10.6.2). I've installed the MacOS Java ME SDK 3.0 , but I'm getting a MediaException when running any media capturing application (including the demos).
    The example I was using is the MMAPIDemos example (Video-->Video Capture - Form and Video-->Video Capture - Canvas ). In both examples the emulator returned a;
    javax.microedition.media.MediaException: Player cannot be created for capture://video
    exception. I also tried the same application on different versions of MacOS, with a similar result.
    Suggestions very welcome!
    Thanks in advance for any help!
    iacopo

    This thread is duplicated
    I tried this solution Errors when starting Java ME SDK 3 - Windows 7 x64 and it worked with me.

  • Java ME SDK 8 Plugins for Eclipse?

    When will an Oracle Java ME SDK 8 (Early Access 2, )Plugins for Eclipse become available?
    Thanks.

    We plan to have Eclipse support around June/July, in accordance with the original Eclipse schedule for Java 8 support - this is because ME SDK 8 also needs the updated Eclipse MTJ framework.
    Best,
    -- Terrence

  • Java ME SDK 3.0 for Windows 7 64-bit

    Hi,
    I have Windows 7 Home Premium 64-bit. I have installed Java ME SDK 3.0. I know that requirements do not include Windows 7 but I need to get it working.
    So, are there any steps or configuration to make Java ME SDK 3 work on Win7 ?

    This thread is duplicated
    I tried this solution Errors when starting Java ME SDK 3 - Windows 7 x64 and it worked with me.

  • Why do not have a "Java ME SDK 3.0" for the Linux environment, yet

    Some developers need this tool. Will be available soon?

    This thread is duplicated
    I tried this solution Errors when starting Java ME SDK 3 - Windows 7 x64 and it worked with me.

  • Start Java application at system start up linux/unix

    Hi,
    I am working on a application, which needs to run as a background process in linux/unix without the intervention of the user.
    Please give me the details procedure how to make it as background process.
    thanks

    you can make any process a background process by adding an amperstand
    for example:
    java -cp $MyClassPath myAppClass &
    If you want to run it automatically at startup
    you'll have to write a little script which is executed at startup
    and contains a line as above.
    The scripts exectuted at startup are usually located at
    /etc/init.d
    You can use one of those scripts as starting point for your own script.

  • Odd string algorithm (string is for Runtime for linux/unix browser popup)

    I was given this code snippet from this forum in an attempt to popup a web brower in linux/unix operating systems. It doesn't work.
    I have never seen the part of code in bold (the for loop) below, so I can't really make sense of it (the '?' and ':' are new operators to me). When I print the StringBuffer, I show some memory addresses, so I suspect the bold code to be the problem (perhaps needs to specify array indexes?).
    If anyone can either decipher the bold code for me or offer a solution that would work, I would be very grateful.
    Thanks!
    static boolean showInBrowser(String url)
        String os = System.getProperty("os.name").toLowerCase();
        Runtime rt = Runtime.getRuntime();
        try
                if (os.indexOf( "nix") >=0 || os.indexOf( "nux") >=0)
                  String[] browsers = {"epiphany", "firefox", "mozilla", "konqueror",
                      "netscape","opera","links","lynx"};
                  StringBuffer cmd = new StringBuffer();
    for (int i=0; i<browsers.length; i++)
    cmd.append( (i==0 ? "" : " || " ) + browsers +" \"" + url + "\" ");
                  rt.exec(new String[] { "sh", "-c", cmd.toString() });
                  //System.out.println(cmd.toString());
               else
                 return false;
        catch (IOException e)
            e.printStackTrace();
            return false;
        return true;
    }

    ?: is like an if-else operator: i==0?foo:bar is
    if(i==0) value_of_expression = foo else value_of_expression = bar.
    You probably get memory addresses because in the loop "browsers" should really be browsers
    Plain "browsers" just keeps giving you the memory address of the array (or if you want to get nitpicky the hash code which is not really the address.)

  • Installing java ee sdk (java_ee_sdk-6u1-jdk-linux-x64.sh) on x64 linux

    Hello guys, this is my first post here :) so don't bash me too much.
    Trying to get the Java EE installed on gentoo linux x86-64 here. Downloaded java_ee_sdk-6u1-jdk-linux-x64.sh from oracle.com.
    I have tried different jres:
    32 bit, 64 bit.
    now I have this jre :
    ak@pussy ~/0.java $ java -version
    java version "1.6.0_20"
    Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
    Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01, mixed mode)so, doing ak@pussy ~/0.java $ ./java_ee_sdk-6u1-jdk-linux-x64.sh gives me nasty file not found exception & hence I can't get sdk installed:
    [#|2010-08-04T20:32:13.704+06:00|INFO|Install Engine|org.openinstaller.provider.task.TaskDriver|arg0=prod\=glassfish|OP_UNCONFIGURE:Unconfiguring product|#]
    [#|2010-08-04T20:32:13.781+06:00|INFO|Install Engine|org.openinstaller.provider.conf.ConfiguratorFactory|arg0=class org.openinstaller.provider.conf.InstallationConfigurator|LOG_INFO:Info|#]
    [#|2010-08-04T20:32:14.210+06:00|INFO|Install Engine|org.openinstaller.provider.conf.InstallationConfigurator||Unconfiguring GlassFish:\[Unconfiguring GlassFish\]*\[{0} {1}\]|#]
    [#|2010-08-04T20:32:14.232+06:00|INFO|Install Engine|org.openinstaller.provider.task.TaskDriver|arg0=prod\=jdk|OP_UNCONFIGURE:Unconfiguring product|#]
    [#|2010-08-04T20:32:14.264+06:00|INFO|Install Engine|org.openinstaller.provider.conf.InstallationConfigurator||Unconfiguring JDK:\[Unconfiguring JDK\]*\[{0} {1}\]|#]
    [#|2010-08-04T20:32:14.289+06:00|INFO|Install Engine|org.openinstaller.provider.task.TaskDriver|arg0=prod\=updatetool|OP_UNCONFIGURE:Unconfiguring product|#]
    [#|2010-08-04T20:32:14.318+06:00|INFO|Install Engine|org.openinstaller.provider.conf.InstallationConfigurator||Unconfiguring Updatetool:\[Unconfiguring Updatetool\]*\[{0} {1}\]|#]
    [#|2010-08-04T20:32:14.319+06:00|INFO|Install Engine|org.openinstaller.provider.conf.InstallationConfigurator||Installation directory: /home/ak/0.java/glassfishv3:\[Installation directory: /home/ak/0.java/glassfishv3\]*\[{0} {1}\]|#]
    [#|2010-08-04T20:32:14.322+06:00|INFO|Install Engine|org.openinstaller.provider.conf.InstallationConfigurator||Shutting down notifier process:\[Shutting down notifier process\]*\[{0} {1}\]|#]
    [#|2010-08-04T20:32:14.353+06:00|INFO|Install Engine|org.openinstaller.provider.conf.InstallationConfigurator||Exception while unregistering notifier: Exception=EXECUTECMD_ERR
    at org.openinstaller.util.ExecuteCommand.execute(ExecuteCommand.java:467)
    at org.openinstaller.provider.conf.InstallationConfigurator.unconfigureUpdatetool(null:?)
    at org.openinstaller.provider.conf.InstallationConfigurator.unConfigure(null:?)
    at org.openinstaller.provider.conf.ConfigProvider.receiveRequest(ConfigProvider.java:573)
    at org.openinstaller.bus.ControlBus.publishRequest(ControlBus.java:341)
    at org.openinstaller.provider.task.UnconfigTask.perform(UnconfigTask.java:88)
    at org.openinstaller.provider.task.TaskDriver.executeTask(TaskDriver.java:378)
    at org.openinstaller.provider.task.TaskProvider.receiveRequest(TaskProvider.java:117)
    at org.openinstaller.bus.ControlBus$3.run(ControlBus.java:404)
    at java.lang.Thread.run(Thread.java:619)
    Caused By=java.io.IOException: Cannot run program "/home/ak/0.java/glassfishv3/updatetool/bin/updatetool": java.io.IOException: error=2, No such file or directory
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
    at java.lang.Runtime.exec(Runtime.java:593)
    at java.lang.Runtime.exec(Runtime.java:509)
    at org.openinstaller.util.ExecuteCommand.execute(ExecuteCommand.java:423)
    at org.openinstaller.provider.conf.InstallationConfigurator.unconfigureUpdatetool(null:?)
    at org.openinstaller.provider.conf.InstallationConfigurator.unConfigure(null:?)
    at org.openinstaller.provider.conf.ConfigProvider.receiveRequest(ConfigProvider.java:573)
    at org.openinstaller.bus.ControlBus.publishRequest(ControlBus.java:341)
    at org.openinstaller.provider.task.UnconfigTask.perform(UnconfigTask.java:88)
    at org.openinstaller.provider.task.TaskDriver.executeTask(TaskDriver.java:378)
    at org.openinstaller.provider.task.TaskProvider.receiveRequest(TaskProvider.java:117)
    at org.openinstaller.bus.ControlBus$3.run(ControlBus.java:404)
    at java.lang.Thread.run(Thread.java:619)
    Context-Items=[[method=org.openinstaller.util.ExecuteCommand.execute(), operation=EXECUTECMD_ERR, command=[/home/ak/0.java/glassfishv3/updatetool/bin/updatetool, --notifier, --shutdown]]]:\[Exception while unregistering notifier: Exception=EXECUTECMD_ERR
    at org.openinstaller.util.ExecuteCommand.execute(ExecuteCommand.java:467)
    at org.openinstaller.provider.conf.InstallationConfigurator.unconfigureUpdatetool(null:?)
    at org.openinstaller.provider.conf.InstallationConfigurator.unConfigure(null:?)
    at org.openinstaller.provider.conf.ConfigProvider.receiveRequest(ConfigProvider.java:573)
    at org.openinstaller.bus.ControlBus.publishRequest(ControlBus.java:341)
    at org.openinstaller.provider.task.UnconfigTask.perform(UnconfigTask.java:88)
    at org.openinstaller.provider.task.TaskDriver.executeTask(TaskDriver.java:378)
    at org.openinstaller.provider.task.TaskProvider.receiveRequest(TaskProvider.java:117)
    at org.openinstaller.bus.ControlBus$3.run(ControlBus.java:404)
    at java.lang.Thread.run(Thread.java:619)
    Caused By=java.io.IOException: Cannot run program "/home/ak/0.java/glassfishv3/updatetool/bin/updatetool": java.io.IOException: error=2, No such file or directory
    .and so on

    I guess this should give more details about issues I am having :
    Using the user defined JAVA_HOME : /home/ak/0.java/jre1.6.0_21_64
    Entering setup...
    WARNING: Warning: Could not detect OS Architecture, falling back to os.arch [Architecture=GenuineIntel ]
    FINE: completed initializing provider svc://general/orchestrator
    FINEST: Ignoring blank answer file or syntax error in ,file:///tmp/install.080510113914/install.properties
    FINEST: BGImagePanel() called by org.openinstaller.util.ui.StandaloneSplash?<init>
    FINEST: BGImagePanel.setBgImage(Image BufferedImage@1c5d9084: type = 5 ColorModel: #pixelBits = 24 numComponents = 3 color space = java.awt.color.ICC_ColorSpace@42bad8a8 transparency = 1 has alpha = false isAlphaPre = false ByteInterleavedRaster: width = 728 height = 435 #numDataElements 3 dataOff[0] = 2) called by org.openinstaller.util.ui.StandaloneSplash?<init>
    FINE: DISCOVERING_SERVICE_PROVIDERS
    FINE: Not instantiating null - not a ServiceProvider
    Exception=null
    at java.net.URLClassLoader$1.run(null:?)
    at java.security.AccessController.doPrivileged(null:?)
    at java.net.URLClassLoader.findClass(null:?)
    at org.openinstaller.core.EngineBootstrap.findClass(EngineBootstrap.java:249)
    at java.lang.ClassLoader.loadClass(null:?)
    at org.openinstaller.core.EngineBootstrap.loadClass(EngineBootstrap.java:357)
    at java.lang.ClassLoader.loadClass(null:?)
    at org.openinstaller.core.EngineBootstrap.loadClass(EngineBootstrap.java:318)
    at java.lang.Class.forName0(null:?)
    at java.lang.Class.forName(null:?)
    at org.openinstaller.core.Orchestrator.findServiceProviders(Orchestrator.java:763)
    at org.openinstaller.core.Orchestrator.main(Orchestrator.java:447)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(null:?)
    at sun.reflect.NativeMethodAccessorImpl.invoke(null:?)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(null:?)
    at java.lang.reflect.Method.invoke(null:?)
    at org.openinstaller.core.EngineBootstrap.main(EngineBootstrap.java:208)
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: FOUND_SERVICE_PROVIDER
    FINE: DISCOVERED_SERVICE_PROVIDERS
    FINE: completed initializing provider svc://general/system
    FINE: completed initializing provider svc://general/name
    FINE: completed initializing provider svc://general/product
    FINEST: Initializing configuration provider
    FINEST: BusRequest For: [svc://general/EngineConfig] Request: [BusRequest: name: ConfigRequest data: EngineConfigCommand{ cmd=GET_CONFIG, data=MEDIA_LOCATION}] By: [org.openinstaller.util.install.Common.getMediaLocationURL(*)
    FINEST: BusRequest For: [svc://general/EngineConfig] Request: [BusRequest: name: ConfigRequest data: EngineConfigCommand{ cmd=GET_CONFIG, data=MEDIA_LOCATION}] By: [org.openinstaller.util.install.Common.getMediaLocationURL(*)
    FINEST: BusRequest For: [svc://general/EngineConfig] Request: [BusRequest: name: ConfigRequest data: EngineConfigCommand{ cmd=GET_CONFIG, data=MEDIA_LOCATION}] By: [org.openinstaller.util.install.Common.getMediaLocationURL(*)
    FINE: completed initializing provider svc://general/task
    FINEST: BusRequest For: [svc://general/EngineConfig] Request: [BusRequest: name: Mode-Request data: EngineConfigCommand{ cmd=GET_CONFIG, data=DRY_RUN_FILE}] By: [org.openinstaller.provider.sims.SIMSProvider.init(*)
    FINEST: BusRequest For: [svc://general/EngineConfig] Request: [BusRequest: name: EngineConfigRequest data: EngineConfigCommand{ cmd=GET_CONFIG, data=PLATFORM_PLUGIN_PATH}] By: [org.openinstaller.provider.platform.SystemInterface.init(*)
    FINE: completed initializing provider svc://general/operation
    FINEST: BusRequest For: [svc://general/EngineConfig] Request: [BusRequest: name: ModeRequest data: EngineConfigCommand{ cmd=GET_CONFIG, data=PKG_FORMAT}] By: [org.openinstaller.sims.BackendFactory.discoverBackend(*)
    FINE: LOADING_CLASS
    FINE: Can't load SIMS backend org.openinstaller.sims.backends.zip.unix.linux.SIMSBackend
    Exception=org.openinstaller.sims.backends.zip.unix.linux.SIMSBackend
    at java.net.URLClassLoader$1.run(null:?)
    at java.security.AccessController.doPrivileged(null:?)
    at java.net.URLClassLoader.findClass(null:?)
    at org.openinstaller.core.EngineBootstrap.findClass(EngineBootstrap.java:249)
    at java.lang.ClassLoader.loadClass(null:?)
    at org.openinstaller.core.EngineBootstrap.loadClass(EngineBootstrap.java:357)
    at java.lang.ClassLoader.loadClass(null:?)
    at org.openinstaller.core.EngineBootstrap.loadClass(EngineBootstrap.java:318)
    at java.lang.Class.forName0(null:?)
    at java.lang.Class.forName(null:?)
    at org.openinstaller.sims.BackendFactory.getBackendByClass(BackendFactory.java:146)
    at org.openinstaller.sims.BackendFactory.discoverBackend(BackendFactory.java:112)
    at org.openinstaller.sims.BackendFactory.getBackend(BackendFactory.java:80)
    at org.openinstaller.sims.SIMSContext.<init>(SIMSContext.java:131)
    at org.openinstaller.provider.sims.SIMSProvider.init(SIMSProvider.java:95)
    at org.openinstaller.bus.ControlBus$1.run(ControlBus.java:192)
    at java.lang.Thread.run(null:?)
    ]

  • BW Bex Browser in SAP GUI for JAVA 6.40 R2.2 for Linux Desktops

    Hello,
    I am using SAP GUI for JAVA v 6.40 R2.2 on a Linux desktop. But during the installation it doesn't ask for BW Bex installation option (as in SAP GUI for Windows). Is it the case that BW Bex is not supported in Linux Environment? If it is then kindly suggest some way to install the same.
    Regards,
    Yashodhan

    Hi Yashodhan,
    the Business Explorer does not exist in the Linux environment.
    Best regards,
    Christian

  • Just released Java ME SDK for Mac OS

    Java ME SDK 3.0 for Mac OS final version has been released [http://java.sun.com/javame/downloads/sdk30_mac.jsp|http://java.sun.com/javame/downloads/sdk30_mac.jsp]
    Edited by: kTom on Dec 22, 2009 5:25 AM
    Edited by: kTom on Dec 23, 2009 8:40 AM

    Are there any plans about releasing the SDK on Linux, and if yes, when?

  • Java ME SDK 3.0 doesn't start - java.lang.reflect.InvocationTargetException

    I want to migrate from NetBeans 6.7.1 to Java ME SDK 3.0 for several reasons.
    However when trying to start it hangs for a couple of minutes and then this message come up in a pop-up box:
    "A java.lang.reflect.InvocationTargetException exception has occurred. Click Show Details or see the messages.log file located in your C:\Documents and Settings\admin\javame-sdk\toolbar\3.0\var\log folder."
    Log file contant here. I' have read the UsersManual but this seems different.
    I run Windows XP Pro SP3. I have a F-Secure Internet 2010 FW application. Please enlighten me on what setting I shoud set in the FW or other part of my system.
    BR
    /Per
    Log Session: Friday, January 15, 2010 4:02:04 PM CET
    System Info: Product Version = Java(TM) ME Platform SDK 3.0
    Operating System = Windows XP version 5.1 running on x86
    Java; VM; Vendor = 1.6.0_17; Java HotSpot(TM) Client VM 14.3-b01; Sun Microsystems Inc.
    Runtime = Java(TM) SE Runtime Environment 1.6.0_17-b04
    Java Home = C:\Program Files\Java\jdk1.6.0_17\jre
    System Locale; Encoding = sv_SE (cdctoolbar); Cp1252
    Home Directory = C:\Documents and Settings\admin
    Current Directory = C:\Java_ME_platform_SDK_3.0\bin
    User Directory = C:\Documents and Settings\admin\javame-sdk\toolbar\3.0
    Installation = C:\Java_ME_platform_SDK_3.0\toolbar\javamesdk1
    C:\Java_ME_platform_SDK_3.0\toolbar\ide10
    C:\Java_ME_platform_SDK_3.0\toolbar\java2
    C:\Java_ME_platform_SDK_3.0\toolbar\mobility8
    C:\Java_ME_platform_SDK_3.0\toolbar\profiler2
    C:\Java_ME_platform_SDK_3.0\toolbar\platform9
    Boot & Ext. Classpath = C:\Program Files\Java\jdk1.6.0_17\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_17\jre\classes;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\sunpkcs11.jar
    Application Classpath = C:\Java_ME_platform_SDK_3.0\toolbar\platform9\lib\boot.jar;C:\Java_ME_platform_SDK_3.0\toolbar\platform9\lib\org-openide-modules.jar;C:\Java_ME_platform_SDK_3.0\toolbar\platform9\lib\org-openide-util.jar;C:\Program Files\Java\jdk1.6.0_17\lib\dt.jar;C:\Program Files\Java\jdk1.6.0_17\lib\tools.jar
    Startup Classpath = C:\Java_ME_platform_SDK_3.0\toolbar\platform9\core\core.jar;C:\Java_ME_platform_SDK_3.0\toolbar\platform9\core\org-openide-filesystems.jar;C:\Java_ME_platform_SDK_3.0\toolbar\javamesdk1\core\locale\core_cdctoolbar.jar
    VARNING
    --- cut of Warnings and Info---
    [ 680219] ERROR - un.jme.toolkit.bootstrap.Batch - Problem calling start() on DeviceManagerConnection
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.jme.toolkit.bootstrap.Batch.invoke(Unknown Source)
         at com.sun.jme.toolkit.bootstrap.Batch.tryInvoke(Unknown Source)
         at com.sun.jme.toolkit.bootstrap.Batch.startObjects(Unknown Source)
         at org.netbeans.modules.javame.common.container.Module.start(Module.java:21)
         at org.netbeans.modules.javame.common.container.ContainerSupport.startModule(ContainerSupport.java:67)
         at org.netbeans.modules.javame.common.container.devicemanager.DevicemanagerHelper.getDeviceManagerConnection

    I have tried to switch off the FW -> the SDK 3.0 hangs in the initial startup splash. The red line stops at ca 75% done
    I have tried to open the port 1299 -> the SDK 3.0 hangs in the initial startup splash. The red line stops at ca 75% done
    /Per

Maybe you are looking for

  • Can't get iTunes to recognize iPod

    Anyway, I've been getting that picture of the file with an exclamation mark on it. When I put it in my computer, it won't recognize my player at all, just locks up. I reset it, I put it in safe disk mode, and take it out. I'm trying to do a restore o

  • Font rendering quality in Illustrator is terrible!

    What the heck rode Adobe when they implemented the new font engine? Why, oh why is Apple's font rendering so much better? And why wouldn't Adobe use something that's already readily available on the mac platform? I have a huge problem mocking up webs

  • Elisa won't start

    i have just recently done a fresh install of arch. before i was using the proprietary driver for my graphics card it would open, but wouldnt really work right (eg the screen would flicker and lag). but now i have the proprietary driver installed and

  • Would you recommend FX5700 TD256 or FX5500 128mb?

    I bought a Video Capture card. Pinnacle AV DV Deluxe 9 which im plalnning to use with a video card. Which of the two will be the best to buy?

  • Unable to use my phone as a modem on Windows 8.

    Hi, When I connect my nokia 701 or my C3-00 to my Laptop running windows8 as a modem, It connects perfectly for the first time but when I disconnect the internet any connect back, the phone never connects to the internet again. I have to restart the