WTK 2.5.1on Linux

Hi I am migrating my development enviroment from windows to linux but I am finding some problems, here are three issues I have seem:
1 =======================
The scripts run.sh does not work to solve this I had to:
1. change permission chmod 755
2. change the file where it says:
DEMO=demos
put
DEMO=Demos
2 =======================
I am trying to test a jar file using jsr75 to access cell filesystem it works great on WTK2.5.1 on windows but it stops when reading a directory on Linux the emulator asks permission to read the user press yes it goes when it asks again to read the contents of that directory the user press yes and nothing happens. I have double checked permissions on the appd/filesystem/root1 permissions even with chmod 777 it does not work. See that this same .jar works well on Windows WTK2.5.1
3 =======================
In the games demo the push-puzzle when play a sound it sounds too strange, as it was played fast foward
=======================
I am using netbeans 5.5.1 and wtk2.5.1 that came with it on Ubuntu 7.04 with kernel 2.6.20-16 and java -version returns
java version "1.5.0_11"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)
===============
Thanks, hope to hear from you soon

Hi Thanks for your answer the issue 1 was done with the Ktoolbar but issue 2 dtill not working even if i am using ktoolbar to create a project build and run it.
Here is the KtoolBar console output:
Warning: Cannot convert string "-b&h-luxi sans-medium-r-normal--*-140-*-*-p-*-iso8859-1" to type FontStruct
Warning: Cannot convert string "-misc-ar pl shanheisun uni-medium-r-normal--*-*-*-*-p-*-iso10646-1" to type FontStruct
/usr/share/themes/Human/gtk-2.0/gtkrc:71: Engine "ubuntulooks" is unsupported, ignoring
/usr/share/themes/Human/gtk-2.0/gtkrc:241: Priority specification is unsupported, ignoring
Running with storage root DefaultColorPhone
Running with locale: pt_BR.UTF-8
Running in the identified_third_party security domain
Warning: To avoid potential deadlock, operations that may block, such as
networking, should be performed in a different thread than the
commandAction() handler.and here is my code:
* MIDletAcessoFileSystem.java
* Created on 9 de Junho de 2007, 16:24
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import javax.microedition.io.Connector;
import javax.microedition.io.file.FileConnection;
import javax.microedition.io.file.FileSystemRegistry;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
* Exemplo de utiliza��o do FileSystem
* @author Tadeu Ferreira Oliveira
* @version 0.1
public class MIDletAcessoFileSystem extends MIDlet implements CommandListener{
     * Uma lista para exibir o nome dos arquivos encontrados
    private List lista;
     * Comando para sair do programa
    private Command sair;
     *Acionado para exibir o conte�do de um diret�rio no sistema de arquivos
    private Command listarArquivos;
     * Versao da API FileConnection
    private String versao;
     * Construtor obtem o valor da vari�vel versao
    public MIDletAcessoFileSystem(){
        this.versao = System.getProperty("microedition.io.file.FileConnection.version");
     * Localiza todos os drives dispon�veis no aparelho
     * @return Retorna um Enumeration de String com o nome dos drives encontrados
    private Enumeration obterListaDeDrives(){
        Enumeration drives =  FileSystemRegistry.listRoots();                           
        return drives;
     * Localiza todos os arquivos em um determinado drive
     * @return Retorna um String[] com o nome dos arquivos encontrados
     * @param drive O drive que dever� ser listado sem barra no in�cio Ex.: root1/
    private Enumeration obterListaDeArquivos(String drive){
        Enumeration arquivos =  null;
        try {
            FileConnection fc = (FileConnection) Connector.open("file://localhost/"+drive, Connector.READ);
            arquivos = fc.list();
        } catch (IOException ex) {
            ex.printStackTrace();
        return arquivos;
    public List get_lista(){
        if (this.lista == null){
            String[] elementos = null;           
            lista = new List("Arquivos",List.EXCLUSIVE);
            lista.addCommand(get_sair());
            lista.addCommand(get_listarArquivos());
            lista.setCommandListener(this);
        return lista;
    public Command get_sair(){
        if(sair == null){
            sair = new Command("Sair",Command.EXIT,0);
        return sair;
    public Command get_listarArquivos(){
        if(this.listarArquivos == null){
            this.listarArquivos = new Command("Listar",Command.ITEM,1);
        return this.listarArquivos;
    public void startApp() {
        Display d = Display.getDisplay(this);
        if (versao != null){
            if (versao.equals("1.0")){
                d.setCurrent(get_lista());
            String elem = null;
            Enumeration em = this.obterListaDeDrives();           
            while (em.hasMoreElements()) {
                elem = (String) em.nextElement();
                get_lista().append(elem,null);  
        }else{
            Alert alErro = new Alert("Erro","Aparelho sem suporte a arquivos",null,AlertType.ERROR);
            alErro.setTimeout(Alert.FOREVER);
            d.setCurrent(alErro,get_lista());
    public void pauseApp() {
    public void destroyApp(boolean unconditional) {
    public void commandAction(Command command, Displayable displayable) {
        if (command == get_sair()){
            this.destroyApp(true);
            Display.getDisplay(this).setCurrent(null);
            this.notifyDestroyed();
        }else{
            if(command == get_listarArquivos()){               
                //obtem o drive selecionado no momento
                int indice = this.get_lista().getSelectedIndex();
                String drive = this.get_lista().getString(indice);
                //limpar a lista
                this.get_lista().deleteAll();
                String elem = null;
                Enumeration en = this.obterListaDeArquivos(drive);
                //adicionar os arquivos na lista
                while (en.hasMoreElements()) {
                    elem = (String) en.nextElement();
                    this.get_lista().append(elem,null);  
}

Similar Messages

  • WTK 2.2 hiccup (linux, java 1.4.2)

    Hello
    I have used WTK before.
    I installed:
    - debian testing
    - j2SE 1.4.2.11 (via .bin-methode since the rpm is borked since about 3 years and 20 versions)
    - WTK 2.2
    I start the ktoolbar, open any sample project and click on "run". The emulator comes up and the display stays blank => http://img153.imageshack.us/img153/2923/wtk0en.jpg for 10 min. Closing the emu frezes both the emu and ktoolbar. Same thing with every other "Device".
    After 10 min i get "Warning: Failed to initialize WMA message routing support". i guess waiting for another ... 2 hours will do the trick.
    The PC is fast enough (dual 3 GHz), there is a lot of RAM (2 GB, 1.8 free) and there are no other progs running. I know java is slow, but this is way too much.
    any thoughts ?
    (Just got "Warning: Failed to initialize Bluetooth (JSR 82) support" ... it's getting closer...)

    Hi Ken,
    I m working on a CRM application and its uses struts framework. It is deployed on WAS 7.00.
    What i feel is you have to specify in struts config files, you have to specify the name of the *.action to call any action file.
    Also you need to the action class that is to be called when a particular action is requested.
    Hope this help to resolve your query!!!!
    Rgds,
    Prashil

  • Change workdir in WTK 2.5.2 (Linux)?

    The WTK 2.5.2 documentation says my workdir is ~/j2mewtk by default. However, it doesn't say how to change it. I really hate when applications messes with my home directory root, so please, how do I change the workdir to something else?

    This looks interesting, but it didn't work for me. The link doesn't seem to work right now, but the google cache does.
    [http://209.85.173.132/search?q=cache:3843JjfYVqAJ:forums-beta.sun.com/thread.jspa%3FmessageID%3D2576307+ktoolbar+path&cd=2&hl=en&ct=clnk&gl=us&client=firefox-a|http://209.85.173.132/search?q=cache:3843JjfYVqAJ:forums-beta.sun.com/thread.jspa%3FmessageID%3D2576307+ktoolbar+path&cd=2&hl=en&ct=clnk&gl=us&client=firefox-a]
    [http://forums-beta.sun.com/thread.jspa?messageID=2576307|http://forums-beta.sun.com/thread.jspa?messageID=2576307]

  • How to install J2ME WTK on Linux Mandrake 10.1?

    Hello!
    I try to install J2ME WTK on to my Linux Mandrake 10.1but it does not work for me. Below is the output after the License agreement.
    So if you got any ideas please let me know.
    Best regards
    Fredrik
    Do you agree to the above license terms? [yes or no] yes
    j2me_wireless_toolkit-2_2-linux-i386.bin: line 287: cd: /home/fredrik/downloads/Java: No such file or directory
    Testing /usr/java/jdk1.5.0_01/bin/java...
    A suitable Java interpreter was detected
    0) Use /usr/java/jdk1.5.0_01/bin/
    1) Specify a path to a Java interpreter directory.
    2) Cancel this installation.
    Select a choice [0-2]: 1
    This application requires Java 2 SDK, Standard Edition (1.4 or later). Enter a path to a Java 2 SDK (For example: /user/jdk1.4/bin). You can type "exit" to cancel installation.
    Enter a path to the Java 2 SDK: /usr/java/jdk1.5.0_01/bin
    /usr/java/jdk1.5.0_01/bin/java
    Testing /usr/java/jdk1.5.0_01/bin/java...
    Please enter a directory into which you would like to install the J2me Wireless Toolkit, 2.2.
    [ default is /home/fredrik/downloads/Java Micro edition/WTK2.2 ]:/usr/java
    j2me_wireless_toolkit-2_2-linux-i386.bin: line 224: cd: /home/fredrik/downloads/Java: No such file or directory
    Installation directory is /usr/java.
    Setup has enough information to start copying the program files.
    Current Settings:
    Destination Directory
    /usr/java/
    JVM Folder
    /usr/java/jdk1.5.0_01/bin/
    Please choose one of the following options:
    0) Begin copying files if you are satisfied with the settings .
    1) Cancel the installation.
    Select a choice [0-1]: 0
    Failed to extract files. Installation will stop now.
    Please try to install J2ME Wireless Toolkit again, or contact [email protected] for assistance.
    [root@Stationary Java Micro edition]#

    Don't add the /bin part of the path. The WTK only wants to parent directory for you J2SDK installation, which would be /usr/java/jdk1.5.0_01. Though I don't know that using J2SDK 1.5 is the best route to take. I would recommend going with the latest 1.4 until they update the WTK.

  • WTK 2.5 beta (2) for Linux?

    Hi,
    just one question:
    Why isn't there a Linux version of the WTK 2.5 beta? It supports SVG, and I need it for my project. I haven't Windows installed on my laptop. In addition to that, my project also uses Bluetooth (serverside is JavaSE) and the free JSR-82-implementations are all for Linux.
    So, how / when can I (we?) get a WTK 2.5. for Linux?
    Thanks!

    I have read the wtk 2.5 faq. It says,
    When will the Sun Java Wireless Toolkit for CLDC be supported on platforms other than Windows?
    A version of the Toolkit is available today and can be downloaded here - http://java.sun.com/product/sjwtoolkit/download-2_5_1.html .
    Unfortunately when I follow the link it says, page not found. I am looking for the release everyday.

  • Network permissions for WTK on linux

    I have been testing my midp application using the sun wtk and eclipse for linux(ubuntu feisty - java-6-sun).
    My problem is that when i launch the debug emulator from eclipse it fails to send any datagram traffic. The application sends the data but the data never gets to the server. If i launch the WTK seperatly as root however the packets do get through. Any ideas? Is there some permission which I should be setting in a configuration file or on the device files?
    Thank you

    Wireless Configurations
    What wireless modes are you using?
    Try setting a manual Channel to a open or unused channel. 1, 6 or 11. 11 for single mode N if the channel is clear. 13 for EU regions.
    What security mode are you using? Preferred security is WPA-Personal. WPA2/AES Only. Some WiFi adapters don't support AES, so you might want to try TPIK [/url] only or Auto TPIK and AES.
    What wireless devices do you have connected?
    Any 2.4Ghz or 5Ghz cordless house phones or WiFi APs near by?
    Any other WiFi routers in the area? Link> Use http://www.metageek.net/support/metageek-software-archives/ to find out. How many?
    Router Placement
    Forum User - "Well I feel really dumb. After moving the router away from other electronic devices my speeds are back to normal. Just a heads up for anyone experiencing slow speeds, you might want to move it away from other electronics and see if that helps."
    3-6' feet minimum safe distance between devices.
    Placement on main level floor and central in the building and WELL ventilated is preferred. Not in basements or closets as building materials, or near by electronics devices could interfere or hinder good signal propagation.

  • KVM CLDC build error at jcc

    Hi all,
    Some info first:
    Platform : LINUX Redhat 9
    Technology: CLDC 1.1
    Additional: JSR-75 from WTK 2.2
    I am trying to build the cldc kvm. I have a stack implementation in java, which I have integrated with the cldc. Also, I want to use the jsr-75 API (jar only, no source). Now here's the problem-- before adding the specific java files that use the jsr-75 api, I was able to build cldc properly without any errors. However, after I have added some new java code that requires the jsr-75 api's, the build dies as is indicated by the following...
    ===============>>>>
    make[2]: Entering directory `/users/in1222c/cldc/tools/jcc'
    ... nativeFunctionTableUnix.c
    /users/in1222c/jdk1.4/bin/java -classpath classes:/users/in1222c/WTK2.2/lib/jsr75.jar JavaCodeCompact \
             -arch KVM_Native -o nativeFunctionTableUnix.c classesUnix.zip
    Warning: could not quicken reference from <init>:(J)V to Class: javax/microedition/io/file/FileConnection
    Exception in thread "main" java.lang.NullPointerException
            at components.FMIrefConstant.findInInterfaces(FMIrefConstant.java:154)
            at components.FMIrefConstant.find(FMIrefConstant.java:134)
            at components.FMIrefConstant.isResolved(FMIrefConstant.java:169)
            at vm.CodeHacker.quickenCode(CodeHacker.java:206)
            at vm.CodeHacker.quickenCode(CodeHacker.java:326)
            at JavaCodeCompact.finalizeClasses(JavaCodeCompact.java:470)
            at JavaCodeCompact.writeROMFile(JavaCodeCompact.java:515)
            at JavaCodeCompact.process(JavaCodeCompact.java:343)
            at JavaCodeCompact.main(JavaCodeCompact.java:354)
    make[2]: *** [nativeFunctionTableUnix.c] Error 1
    make[2]: Leaving directory `/users/in1222c/cldc/tools/jcc'
    make[1]: *** [nativeFunctionTableUnix.c] Error 2
    make[1]: Leaving directory `/users/in1222c/cldc/tools/jcc'
    make: *** [all] Error 1
    <<<==============Now for this error I was not able to find relevant reference on the internet and hence I am posting here. Is this because I am linking my source files with a "class only library"? (Note: The jsr-75 library is the one which is supplied by Wireless Toolkit. I am using the library supplied by WTK 2.2 for Linux.)
    I may be missing a point here and hence landing in such a situation. I shall be obliged for any help regarding this.
    thanks in advance.
    bbye

    Problem resolved. I had made some inadvertent changes which were causing the problem
    I was trying to build CLDC on Windows2000 using cygwin
    as Unix environment and Microsoft C Compiler
    I got the following linking error.
    main.o : error LNK2001: unresolved external symbol
    _winDrawRectangle
    kvm.exe : fatal error LNK1120: 1 unresolved externals
    make[1]: *** [kvm.exe] Error 96
    make[1]: Leaving directory
    `//c/temp/cldc/kvm/kvm/VmWin/build'
    make: *** [all] Error 1
    Incidentally we have the function declaration
    void winDrawRectangle(int x, int y, int width, int
    height, int mode);
    in the file kvm\vmwin\h\machine_md.h(line no 122)
    and this function is called from the file
    but the problem is this function apparently isn't
    defined anywhere
    kvm\vmwin\src\nativeGraphics.c(line 216) in function
    Java_com_sun_kjava_Graphics_drawBorder()
    thanks in advance
    -prasun

  • Oracle BIEE

    Hi,
    What's the difference between Oracle Business Intelligence Suite Enterprise Edition Plus and Oracle Business Intelligence Server Enterprise Edition.
    Thanks.

    Hi,
    Find the details in the following forum post,
    Re: Steps to upgrade from 10.1.3.3 to 4.1on linux
    Thanks,
    Vino

  • Native methods in MIDlet lib

    My Midlet uses a third-party lib zip file which has native methods in it. When I built my midlet in SUN's WTK2.0, I got this error message:
    ERROR: native methods should not appear
    Error preverifying ....
    Build failed
    If you know the possible solution, pls tell me at [email protected]
    Thanks!

    Sorry I forgot to add something. WTK2.1 would not
    complain "native" but in order for your native access
    function to work, you have to implement some bridge
    between native functions and your java native access
    functions. Those implementation should be done in the
    phone code.Hi there lisaran,
    I tried to install the WTK 2.1_1 for linux, but the installation is corrupted it seems. Did you work on WTK on linux or on windows. Actually, even I am having the same problem. I have native methods declared in the java code. I use KNI to further the calls to a proprietary c code library.
    Thanks in anticipation.
    regards...

  • Dns server for specific domain

    Is there a way to define a dns server for a specific domain?
    I'm setting up a develop machine with an amp stack and i want to redirect all urls with a specific domain (i.e. project.dev) to 127.0.0.1.
    I've done this on OSX with dnsmasq configured in this way:
    # dnsmasq.conf
    address=/.dev/127.0.0.1
    listen-address=127.0.0.1
    port=35353
    and adding a dev file in /etc/resolver with this content
    # /etc/resolver/dev
    nameserver 127.0.0.1
    port 35353
    but this in arclinux with dhcpd doesn't work.
    I've tested dnsmasq with
    dig [email protected] -p 35353
    and it works (the address returned is 127.0.0.1) so the problem is the resolver.
    I've also tried either put into /etc/resov.conf.head this:
    # /etc/resolv.conf.head
    nameserver 127.0.0.1
    port 35353
    and configure dnsmasq with the default 53 port without luck.
    This is my /etc/resolv.conf
    # /etc/resolv.conf
    nameserver 127.0.0.1
    nameserver 192.168.0.1

    On linux you should simply run all dns request through one nameserver that forwards everything it doesn't understand. [Edit: You can do that with dnsmasq.] Another simple way to create a local developer zone would be to use wildcard_dns_proxy instead.
    Last edited by progandy (2015-03-03 17:20:29)

  • NullPointerException forever! Weird problem..

    Note: I'm using Motorola SDK for Motorola OS Products Version 6.4
    this is my MIDLET classs
    protected void startApp() throws MIDletStateChangeException
              this.myList = new ListCanvas(Font.SIZE_SMALL, false);
              this.myList.setTitle("asdsd");
              display.setCurrent(this.myList);
         }and this is my Canvas derived class
    import javax.microedition.lcdui.Canvas;
    import javax.microedition.lcdui.Graphics;
    public class ListCanvas extends Canvas
         private String title;
         public ListCanvas(int FontSize, boolean textCentreAligned)
              this.title = "";     
         protected void paint(Graphics grfx)
              grfx.setColor(0x00FFFFFF);          // White Bg
              grfx.fillRect(0, 0, this.getWidth(), getHeight());
              grfx.setColor(0x000000);
              grfx.drawString(this.title, this.getWidth() / 2, 0, Graphics.HCENTER | Graphics.TOP);
         public void setTitle(String text)
              System.err.println(text);
              this.title = text;
    }its quite simple.. all its doing is drawing some text on the screen...
    now when im running it using the emulator in the SDK..
    i get
    1. "null" printed in debug window << from the System.err.println() in setTitle()
    2. java.lang.NullPointerException occurred in ListCanvas.paint(Graphics), ignored.
    the basic problem here is no matter what i do.. i don't know why the string im passing to my canvas class is going through as a null??
    therefore i cant use it in the drawstring...
    it always keeps giving me this exception..
    the same problem also appears on cell phone which runs Motorola OS so its not an only desktop emulator problem!
    though it works perfectly on WTK and Motorola for Linux OS products emulator!! and other cell phones...
    whats the solution to this please?? im really tired and need this work

    Dayson
    It's weird no doubt, but have you tried initializing title at declaration?String title = "zzz";Other things you can try: rename methods, rename parameters, rename variables, rename classes.
    All of which suggestions no doubt sound absurd, but some years ago I faced a security violation (the dreaded Windows C000..005) in a Visual FoxPro program, and was 100% sure that my code was OK. The problem went away after I renamed a report file. Then I've had blackout crashes of Microsoft&reg; HTML Help editor -- no error message, the program window simply disappeared every time I tried to compile a particular help file -- which was solved by renaming a MIDI file from popcorn.mid to pop.mid... which was used in ALL my other help files, which compiled fine with the original name.
    When you're clutching at straws, and the fault is not yours, you have to try everything!
    Wish you luck, Darryl

  • Cannot install WTK 2.2 on Suse Linux 10.2 with JDK1.6.0

    Dear all, I've just tried to install the Java Wireless Toolkit on my Pc, I've Linux Suse 10.2 with JDK 1.6.0. When i execute the j2me_wireless_toolkit-2_2-linux-i386.bin i get this error
    Enter a path to the Java 2 SDK: /usr/java/jdk1.6.0/bin
    /usr/java/jdk1.6.0/bin/java
    Testing /usr/java/jdk1.6.0/bin/java...
    Exception in thread "main" java.lang.ClassFormatError: Extra bytes at the end of class file com/sun/kvem/environment/JavaVersionTester
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    /usr/java/jdk1.6.0/bin is not a suitable Java interpreter
    Enter a path to a Java 2 SDK (For example: /user/jdk1.4/bin). You can type "exit" to cancel installation.
    There is somebody for helping me? Thank you!!!

    Have you tried to use an older version of the JDK? Maybe the rather old WTK 2.2 is not working with the latest JDK. I use it with JDK 5.0 (or 1.5.0). Perhaps you should give it a try.

  • WTK 2.2 Linux Version, SMS send between phones broken?

    Sending SMS messages from one phone to another seems to be broken in the Linux version of WTK2.2. I'm testing using the WMADemo MIDlet included with WTK2.2. Using the Linux version of the WTK2.2 emulator I get a "java.io.IOException: Connection closed" error from the phone sending the message (see below for full error). When I run the exact same MIDlet in the Windows version of the WTK2.2 emulator I don't get the error and the message is sent correctly and received by the other phone. Is there an existing bug report on this problem? If not how do I open one? I'm using Fedora Core 2 (Linux laalaa 2.6.5-1.358 #1 Sat May 8 09:04:50 EDT 2004 i686 i686 i386 GNU/Linux) and j2sdk1.4.2_08. I'm running the emulators from a NetBean 4.1 (same behavior in NB4.0) project.
    Thanks for your assistance.
    -- Steve
    Send caught:
    java.io.IOException: Connection closed
    at com.sun.midp.io.j2me.datagram.Protocol.ensureOpen(+16)
    at com.sun.midp.io.j2me.datagram.Protocol.newDatagram(+4)
    at com.sun.midp.io.j2me.sms.DatagramImpl.send(+257)
    at com.sun.midp.io.j2me.sms.Protocol.send(+429)
    at example.sms.SMSSender.run(+79)

    Hi,
    I'm having this particular problem on WTK windows version, but it appears just when running it through OTA provisionning.
    Have you found the solution to your problem?
    Isa

  • Most current WTK for Linux?

    Hi
    what is the most current WTK available for Linux,
    and where can i download it (i haven't found any link yet)?
    If it is WTK 2.2: What do i miss compared to WTK-2.5,
    can i use bluetooth already?
    What are the schedules for Linux-WTK 2.5?
    thanks,
    Marcel
    PS: I'm sure there are some thousand other developers interested in this :-)

    Ok, i have found now the download area by guessing the URL:
    http://java.sun.com/products/sjwtoolkit/download-2_2.html
    Version 2.2 (+ a patch) seems to be the latest Linux version,
    according to the download page it supports bluetooth.
    The next release
    http://java.sun.com/products/sjwtoolkit/download-2_3.html
    and higher seems to be Windows only,
    Marcel

  • Wanna add Nokia S60 emulators to WTK 2.5.1

    Hi, guys!
    I installed the Nokia S60 3rd Edition SDK for Symbian OS, Supporting Feature Pack 2, for MIDP (Beta release) into the direcotry C:\S60 and its emulators works well with Netbeans IDE 5.5.1 with mobility pack.
    Now I want to add the emulators from the Nokia S60 3rd Edition SDK to Sun Java Wireless Toolkit 2.5.1. I followed the instructions found in Sun Java Wireless Toolkit for CLDC User's Guide, cited below for convinience of reference:
    "The procedure is usually to unpack or install the third party emulator, then copy its directory into toolkit\wtklib\devices (Windows) or into toolkit/wtklib/devices (Linux). The next time you run the toolkit, the emulator is available."
    I copied the dirctory S60_3rd_MIDP_SDK_FP2_Beta from C:\S60\devices\S60_3rd_MIDP_SDK_FP2_Beta to the dirctory C:\WTK2.5.1\wtklib\devices. But I just can't find the S60 emulators in the WTK as I did in the NetBeans IDE.
    Could anyone kindly tell me what's wrong with my settings? thanks a lot!
    SeaScape
    2007/09/24

    Having the same issue. Help please!

Maybe you are looking for

  • Standby database with different os

    Hi, can anyone help me, if i want build standby database, my primary database using Oracle on Sun Solaris v880, can i use intel based linux or intel based solaris as standby database (hardware cheaper than sun unix) ? if can how to configure or insta

  • How to delete a variable?

    Hi. I want to delete a variable so if i create it later using again "var myVar:DataType" it won't throw an error because of the duplicated variable. I tried using delete but it says i can't use it on fixed property. I setted it to null as it states i

  • Upgraded storage plan not working !!

    I recently dowoaded an upgraded storage plan. it says I have 10 GB avaliable but it won't let me download anything because it says my storage is full. How can I fix this and be able to download things?

  • Ipod 30g - how to get photos from ipod to PC

    Hello. I have just taken my ipod overseas with me and have been downloading the photos from the camera to the ipod while I was away (not the issue). I now want to know what I have to do to down them to the PC. If you have done this before can you giv

  • Selecting even rows

    Hi everybody, Whats wrong with the simple query: SQL> select * from unxtb002 where mod(rownum, 2)=0; It returns no rows. I intend to select even rows from the table. Regards Mona