CDC/Personal Profile Platform Emulator

Hi,
I am a new J2ME developer. Earlier I was working on Swings in Java. I am working on netbeans 6.0 now. I just want to know what are the emulator/SDK available for CDC/Personal Profile1.0. I have already dowloaded the CDC Toolkit form Sun and integrated with Netabeans. Now I am looking an emulator for Personal Profile 1.0. Please help me in finding emulator and integrating with netbeans.
Thanks in advance

Try kXML. It should work on any Java platform.

Similar Messages

  • CDC Personal Profile and XML

    Hi everybody,
    does anyone here has any experiences with J9 (CDC Personal Profile) and XML document?
    Can I use SAX or Dom to parse XML files in CDC Personal Profile?
    Any help is appreciated!!

    Try kXML. It should work on any Java platform.

  • How could I use native methods in CDC-Personal Profile?

    Hi, I know that CDC-Personal profile doesn�t support JNI (I think so), but i think that must be a way to use native methods in an application written with Personal Profile. Thank you very much

    I'm esperiecing the JBluez executing in a CVM for Linux...all seems work well, and i know that only the CLDC doesn't support JNI but CDC support it. You only need to follow theinstructoins valids for use JNI with J2SE, if i'haven't readed bad, CDC is Java 1.3 compliant...
    I hope this could clarify your ideas
    Andrew

  • Compiling CDC/ Foundation Profile  and Personal Profile in RedHat 7.3

    When I compile the CDC/Personal Profile,in RedHat 7.3,I get this message:
    ../share/rules.mk:235: ../../build/linux-i686/generated/empty.mk: No such file or directory
    ... mkdir ../../build/linux-i686/generated/javavm/runtime
    touch ../../build/linux-i686/generated/empty.mk
    ... mkdir ../../build/linux-i686/generated/flags
    error:compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null
    ,null,null,null,null,null,null
    100 errors
    make: ***[.compile.btclasses] Error1
    And with CDC/Foundation Profile ,the message is:
    error:compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null
    ,null,null,null,null,null,null
    100 errors
    make: ***[.compile.btclasses] Error1
    What can I do now!
    Can you help me to solve this error?

    Just do export LANG=en_US
    also edit the /etc/sysconfig/i18n file entry for LANG to en_US instead of the UTF.8 stuff
    I don't know the exact reason though.. this will work.
    --Prasanna Kumar                                                                                                                                                                                                                                                                                                                                                                                               

  • Personal Profile examples

    Where can I find some examples on CDC/Personal profile? (I don't have Linux)

    I'm also looking for some good examples but haven't found yet.

  • Personal Profile compile

    Hi all,
    I recently downloaded the cdc personal profile. I've managed to compile the profile on Red Hat 9 ( compiled cleanly...only some minor warnings ). When I try to run the HelloWorld example packaged within the democlasses.zip file ( should display a window with Hello World in big red letters ), I get the following exception:
    java.lang.NullPointerException:
    at java.lang.Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java.lang.Class.forName(Ljava/lang/String;)Ljava/lang/Class;(Class.java:127)
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment()Ljava/awt/GraphicsEnvironment;(GraphicsEnvironment.java:72)
    So, I traced throught the code. After doing a little debugging, I discovered that the GraphicEnvironment retrieves null for the java.awt.graphicsenv environment variable. Noticing that a doPrivileged call is made, my first thought was that it was a security thing. So I added the java.awt.graphicsenv entry within my java.policy file. Reran the example and still the same exception. I'm baffled as to why a call to retrieve this environment variable is always returning null. I can add a call to System.getProperties() within the GraphicsEnvironment class and it shows that that entry is set to sun.awt.gtk.GdkGraphicsEnvironment. Has anyone encountered this problem? What I'm noticing is that when I call System.getProperty( String name ) it seems to always return null?? I tried:
    System.getProperty( "java.awt.graphicsenv" );
    System.getProperty( "awt.toolkit" );
    System.getProperty( "java.awt.AlphaComposite.SRC_OVER.isRestricted" );
    All returned null! Any suggestions or thoughts would be greatly appreciated. I know there is a rpm version of the personal profile - I've tried it and it works great - but I really need to be able to compile it for myself as I'm going to have to provide some porting libraries and classes.
    Thanks in advance!
    Best Regards,
    Jeff

    I figured it out!!
    It had to do with the makefiles that were responsible for generating those environment variables. More specifically, personal/build/share/defs_basis.mk and personal/build/share/rules.mk. The defs.mk defined a SYSTEM_PROPERTIES variable. It goes through a bunch of if statements to determine which environment variables will be set. Statement looks like this:
    SYSTEM_PROPERTIES += "name=value\n"
    Well, its the rules.mk file that parses that SYSTEM_PROPERTIES variable to generate a system_properties.c file. The line that does this is:
    $(AT) echo $(SYSTEM_PROPERTIES) | sed -e 's/ *\(.*\)=\(.*\)/     PUTPROP (props, "\1", "\2");/' >> .system_properties.c
    This line echos SYSTEM_PROPERTIES and pipes that output to sed which will then parse out each "name=value". Then it will print out PUTPROP( props, "name", "value" );
    The problem that I was encountering was when this line parsed the SYSTEM_PROPERTIES it was parsed as follows:
    name1=value1n name2=value2n .... the \n characters were not being recognized! Therefore all of the name=value pairs were being output on one line. Sed is expecting these things to be on their own line. Therefore the environment variables were not being set correctly by the System. So I made a minor modification to the echo command to interpret the "/n":
    $(AT) echo -e $(SYSTEM_PROPERTIES) | sed -e 's/ *\(.*\)=\(.*\)/     PUTPROP (props, "\1", "\2");/' >> .system_properties.c
    The -e tells echo to interpret any escape characters within the String. Made the fix, recompiled, and everything works great!!
    Regards,
    Jeff

  • How to port Personal Profile Application to PalmOS emulator

    Hi Everyone,
    I have implemented an application by using Personal Profile API in Linux RedHat9.0. But I don't know how to port the application to a PalmOS emulator.
    Would anyone advice me?
    Thank you in advance.
    Regards,
    Paul

    Yes, means you cannot currently. There is no Java Virtual Machine and matching Java Class Libraries supporting the Personal Profile which runs on a PalmOS device. Currently there are MIDP 1.0 implementations for Palm OS implemented in 68k. IBM is currently working with PalmOne and together we are developing a native ARM based MIDP 2.0, CLDC 1.1 solution for the PalmOS 5+ Tungsten devices.

  • Does CDC(PP profile) supprots ARM 7 platform?

    Hi all:
    Who can tell me the answer of this question, and where to get the cdc and pp profile implementation?

    Yes,it is. I 'm porting CDC(foundation profile), and I encount many problems. If you have some experiences or you want to talk about it with me, please Email with me. [email protected] By the way, I'm a Chinese.

  • Using MMAPI with Personal Profile...

    Hi,
    I've read everywhere that the Mobile Media API, as an Optional Package for J2ME, is compatible with both CLDC/MIDP and CDC/PP.
    I need to write an application with MMAPI for a device that runs CDC/PP. I can write MMAPI with the Wireless Toolkit 2.2 but it does not feature the CDC. So I tried Nokia's CDC/PP emulator (Nokia 9500 series 80) but it does not contain MMAPI and everybody on the Nokia forum say it's a pity that the Personal Profile cannot use MMAPI...
    So I don't know what I can do. Is there an emulator that allows me to write an application running on CDC with Personal profile, and that uses the Mobile Media API?
    That's quite important for my internship and I'm quite disapointed not to find what I search. Can anyone help me?

    yes,..ive tried the mmapi with creme cdc vm and it works,...but,only for playing wav,..i dont know about video. coz my program isn't working top play video with it...

  • J2ME & Personal Profile - HOW LONG MUST WE WAIT

    Hello!
    I� am worry about the shipment off Personal Profile and CDC.
    How long must we wait so that Sun will decide to launch this product?!!!
    And what about Personal Java for WindowsCE 3.0 (not a beta release, a final and stable one)? There are VM that we can buy (Insignia), but the principles of Sun and Java are Open Source and free licenses not Open Source BUY IT?!!!!! Besides that this version do not support the possibility to access to MS Pocket Access Database...
    Does anyone know something about this?
    Thanks
    Marco

    Why don't you use J2SE instead, that way you don't have to wait for J2ME anymore!!!!!
    FYI... SavaJe has developed a new Java Operating System for StrongARM based devices such as the Compaq iPAQ. SavaJe supports all Java 2, Standard Edition, JDK 1.3 APIs, libraries and classes on mobile devices, and is the fastest Java platform capable of running all J2SE and PersonalJava applications at desktop performance. (over 10 times faster than running Java on Jeode based on the tests I have done).
    For more information, please visit: http://java.sun.com/features/2001/06/savaje.html
    For a free evaluation download, visit our website at: http://www.savaje.com

  • Getting started..on Personal Profile..please help

    Hello all,
    Iam new to j2me and iam in the learning process.
    I have certain issues of getting started.
    We are going to use Personal Profile in our project
    I want to develop and test in Windows 2000 os.Is that possible?
    How should i use Personal Profile ?
    Should i use pjee(PersonalJava Emulation Enviroment) ?because I have read
    that PersoanlJava is no more in active development and its been
    replaced by personal profile.
    If iam using pjee then is that i need to use JavaCheck..
    Does pjee does the JavaCheck process..
    Please advice.
    Thanks & Regards
    Dinakar

    IBM's J9 supports Personal Profile on various platforms. One is Win32. If you use the IDE that comes with WSDD you can create an Eclipse project targetting Personal Profile. You compile against only the PPro classes, therefore you do not need a JavaCheck like tool.
    You need to download the WSDD 5.6 Tech Preview found at:
    http://www-306.ibm.com/software/wireless/wsdd/
    comments/questions should be directed to the newsgroup (which you can also Google)
    news://news.software.ibm.com/ibm.software.websphere.studio.device-developer
    /Ken

  • Online chat, August 6, on J2ME Personal Profile

    The J2ME Personal Profile (JSR 62), which is now available as a proposed final draft, is a CDC-based profile for small devices that require a high degree of Internet connectivity and web fidelity. It's intended as the follow-on to the PersonalJava environment. Got a question about the J2ME Personal Profile? Then get answers in this chat with Spec Lead, Jon Courtney, and Reference Implementation Lead, Tony Wyant. They'll answer your questions on Tuesday, August 6, at 11 A.M.-to-noon Pacific time (6 P.M.-to-7 P.M. GMT).
    To join the chat, go to http://developer.java.sun.com/developer/community/chat/index.html and click on "Join the current session."

    When will the Transcript for this chat be available?

  • Media API on Personal Profile

    Hi,
    I'm trying to write an appliation which uses the Camera on my PDA. I'm using IBM J9 on the PDA with Personal Profile, and my application uses lots of AWT widgets, so it's not possible to move to Midlets.
    I was trying to add the MIDP library to my application to be able to access the camera. For some reason I can't do this, because J2ME applications can only use one profile. Is there anyways to add the Multi Media APIs to Personal Profile applications ?
    Can anyone give me some advice on how to make this work ? or point me to an alternative way of accessing the camera on my PDA.
    Cheers,

    yes,..ive tried the mmapi with creme cdc vm and it works,...but,only for playing wav,..i dont know about video. coz my program isn't working top play video with it...

  • Personal Profile configuration

    Hi...
    I Have source code runnuing with j2sdk1.4 i would like to run with personalprofile1.1 ....
    What i am doing is i am compiling the source code with j2sdk while running i am running with cvm ...cdc jvm...
    Is it man that i am running with personal profile...Please help me out..
    thanks,
    Krishna

    Ditto my iPhone4 and 6 month old MBP.....

  • Personal profile development

    Hello all:
    When I download Java ME SDK 3.0, I notice one of the feature is
    CLDC/MIDP, CDC/FP/PBP/AGUI and BD-J integrated into one SDK
    So Java ME SDK 3.0 doesn't contain Personal Profile? There is a personal profile reference implementation on sun's website. Is it the PP package one can use for CDC/PP development?
    Thanks,
    P

    Hi,
    I'm seeing that your message is old, and I would like to know if you solve your problem, as I have more or less the same now.
    I'm working with Eclipse IDE, and with J2ME-CLDC works OK, but I don't know how to work with CDC.
    I have downloaded the toolkits of Sun, but don't know how to use them with eclipse.

Maybe you are looking for

  • Using radio button instead of text field

    Hi. I need to convert a text field for radio button. The conversion is as follows: the user will choose one of three options on the radio button (gif, png and jpeg). If the user chooses the image format such as jpeg, for example, how should I put in

  • Aggregate tables have many partitions per request

    We are having some performance issues dealing with aggregate tables and Db partitions. We are on BW3.5 Sp15 and use Oracle DB 9.2.06. After some analysis, we can see that for many of our aggregates, there are sometimes as much as a hundred partitions

  • Tips on Changing Find bar_buttons location & highlights

    Taking the archived topic a bit farther https://support.mozilla.org/en-US/questions/976166?page=1, I added code for the "phrase not found" <u>background & text color</u>. Thanks to cor-el & all others that contributed. I wanted the "Phrase not found"

  • Runtime.getRuntime().exec() error message "cannot execute"

    I'm trying to start another program written in c++ with the commands: p=Runtime.getRuntime().exec("nameofmyprogram"); it works with other programs written in java, and also with ordinary unixcommands like "ls" etc. but when I try to start the c++-one

  • SharePoint Workflow Manager email urls not changing

    Hello Experts, I have created workflow using VS 2013 in SharePoint 2013 using Workflow Manager every thing is working fine . but over due e-mails  of Task assigned shows url in the form of servername like http://servername/... i want to show FQDN. se