Want to deply my project on real device

Hello Friend,
I have develop my application using netbeans 6.5. Now I want to test it on Real device, How i will be able to deploy my application so that I can run it on real device.
Any help would be appreciated.
Thanks.
Regards,
Ravi-India

PhiLho wrote:
As time of writing, to my knowledge, JavaFX mobile isn't ready for real deployment on physical devices, ie. it works only on emulators.See: http://forums.sun.com/thread.jspa?threadID=5352750

Similar Messages

  • How can I load font in real device?

    I am building mobile text SMS in my native country language using j2me wireless toolkit. But I face one problem. Without installing font in windows font directory, I did not display my country font. I used Unicode for my project. My question is:
    * How does the real device get my desire font without install it to device.
    * If I want to give fontname.ttf file with my package. Where can I load this file in midlet package/ midlet suite? Does it work on device?
    Please, help me.
    Babu

    Hi,
    U can try this
    http://developers.sun.com/techtopics/mobility/midp/articles/termemulator3/

  • I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. my goal is to store them in an external hard drive so it doesn't use up memory on the mac hard drive. is it possible to copy the specific projects without copying the entire library? what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    What do you not understand?
    You can duplicate the iPhoto library (command - D ) and delete everything except the project and its photos from the copy and move that
    Or
    However the calendar takes very little space - it is simpy database entries - it is the photos in the calendar that take space - and for most people you would wnat to keep those photos in your library
    you can use a photo in 50 calendars and it still is only one photo in your library - as I explained calenders do not exist as such - they are simply database entries telling iPhotop how to display the calendar - they take almost no space at all
    LN

  • I have 3 apple devices and I use the same apple ID for all 3.  I would like to create a new I'd for one of my devices, but do not want to loose the apps on that device.  Anyone know how I can do this?

    I have 3 apple devices and I use the same apple ID for all 3.  I would like to create a new I'd for one of my devices, but do not want to loose the apps on that device.  Anyone know how I can do this?

    Create a new ID:
    On the iPod go to
    - Settings>Messages>Send and receive and sign out your ID and sign into the other one. Make sure that only her ID email address is listed.
    - Settings>FaceTime sign out of your ID and sign into the other one. Make sure that under You can be reached at only the newID email address is listed
    - Settings>iCloud and sign out and sign in with the new one
    - Settings>iTunes and App Store and sign out your ID and sign in with the new one.
    - Apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • I have 2 iphones in the family and want to use itunes match on both devices, but my husband has his own itunes acct, how can he use the main itunes library and get out music on his phone also

    I have 2 iphones in the family and want to use itunes match on both devices, unfortunately my husband has his own itunes acct and when i change on his phone to my itunes acct it states that the email is already in use, any help on how to get the itunes match to go onto both devices, thanks

    "Method Three
    Create a separate iTunes library for each device. Note:It is important that you make a new iTunes Library file. Do not justmake a copy of your existing iTunes Library file. If iTunes is open,quit it.
    This one may work. I searched and searched on the website for something like this, I guess I just didn't search correctly, lol. I will give this a try later. My daughter is not be back for a few weekends, therefore I will have to try the Method 3 when she comes back for the weekend again. "
    I forgot to mention that she has a PC at her house that she also syncs to. Would this cause a problem. I am already getting that pop up saying that the iPod is synced to another library (even though she is signed in with her Apple ID to iTunes) and gives the pop up to Cancel, Erase & Sync, or Transfer Purchases. My question arose because she clicked on "Erase & Sync" by mistake when she plugged the iPod to her PC the first time. When the iPod was purchased and setup, it was synced to my PC first. When she went home, she hooked it up to her PC and then she erased it by accident. I was able to restore all the missing stuff yesterday using my PC. However, even after doing that it still told me the next time I hooked it up last night that the iPod was currently synced with a different library. Hopefully, you can help me understand all this. She wants to sync her iPod and also backup her iPod at both places. Both PCs have been authorised. Thanks

  • Getting an error when I want to run my project on another pc! URGENT!!

    Hey everyone,
    This is my first post. I have a big problem. I created an enterprise application for a college project but now I want to test it on my laptop. Unfortunately when I want to run the project it gives me this error:
    deployment started : 0%
    Deploying application in domain failed;
    Internal Exception: java.sql.SQLException: Error in allocating a connection. Cause: Class name is wrong or classpath is not set for : com.mysql.jdbc.jdbc2.optional.MysqlDataSource
    Error Code: 0
    C:\Wesley Chin J2EE Project\EdHardyClothingStore\nbproject\build-impl.xml:264: The module has not been deployed.
    When I try and deploy the project it wont deploy.
    Any ideas on what i can do to fix it?
    Urgent help please as I have to hand in the project today!
    Thanks soo much in advance,
    Wesley

    Hello Wesley,
    you will need the jdbc driver for your database.
    You will find it on http://dev.mysql.com/downloads/connector/j/3.1.html
    Download it and put it in your glassfish classpath, e. g. [glassfish-root]/domains/domain1/lib/ext and restart the server.
    Greetings,
    Andreas

  • "Application Error"  While running application in real device

    HI all,
    When i run application on real device( Nokia 7360), It gives me Application Error
    My application is running well in wireless toolkit Emulator..
    I dont know why this is happining on real device?...
    regards
    Pravin

    Here is the code
    It just create a new contact in the AddressBook
    and i use Nokia 7360 for running my application
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.pim.*;
    import java.util.Enumeration;
    public class AddContact extends MIDlet implements CommandListener,Runnable
         Form form;
         Display display;
         Command exit;
         Command add;
         Alert alert;
         public Thread th;
    private boolean quit = false;     
         public AddContact()
         display = Display.getDisplay(this);
         form = new Form("Add Contact");
         exit = new Command("Exit",Command.EXIT,1);
         add = new Command("Add Contact",Command.OK,1);
         alert = new Alert("Add Contact","Contact Added Succesfully",null,null);
         alert.setTimeout(Alert.FOREVER);
         form.addCommand(add);     
         form.addCommand(exit);
         form.setCommandListener(this);
         public void startApp()
              display.setCurrent(form);
              th = new Thread(this);  
         public void pauseApp()
         public void destroyApp(boolean unconditional)
          public void commandAction(Command c, Displayable d) {
               if(c==exit)
                   destroyApp(false);
                         notifyDestroyed();
              else if (c == add)
                        if(!quit)
                        th.start();
                        display.setCurrent(alert);
         public void quit()
         quit = true;
         public void run()
         while (!quit)
              try
              PIM pim = PIM.getInstance();
              ContactList cl = null;
              Contact new_contact = null;
              Enumeration read_contact = null;
              String final_no="";
              try
                   cl = (ContactList)pim.openPIMList(PIM.CONTACT_LIST,PIM.READ_WRITE);
              catch(PIMException pime)
                   Alert alert_1 = new Alert("Error","Error Accessing Database"+pime,null,null);
                   alert_1.setTimeout(Alert.FOREVER);
                   alert_1.setType(AlertType.ERROR);
                   display.setCurrent(alert_1);
              catch(SecurityException se)
                   Alert alert_2 = new Alert("Error","Security Error"+se,null,null);
                   alert_2.setTimeout(Alert.FOREVER);
                   alert_2.setType(AlertType.ERROR);
                   display.setCurrent(alert_2);
              new_contact = cl.createContact();
              new_contact.addString(Contact.TEL,Contact.ATTR_HOME,"123456");
              new_contact.addString(Contact.FORMATTED_NAME,Contact.ATTR_NONE,"AasdD");
              new_contact.addString(Contact.TEL,Contact.ATTR_MOBILE,"2634465");
              new_contact.addString(Contact.TEL,Contact.ATTR_FAX,"+91 7834465");
              new_contact.addString(Contact.TEL,Contact.ATTR_PAGER,"7034465");
              new_contact.addString(Contact.TEL,Contact.ATTR_MOBILE,"9234465");
              try
                   new_contact.commit();
              catch(PIMException piem)
                        Alert alert_4 = new Alert("Error","Error while saving  Data"+piem,null,null);
                        alert_4.setTimeout(Alert.FOREVER);
                        alert_4.setType(AlertType.ERROR);
                        display.setCurrent(alert_4);
              try
                   cl.close();
              catch(PIMException piem)
                   Alert alert_5 = new Alert("Error","Error Closing Application"+piem,null,null);
                        alert_5.setTimeout(Alert.FOREVER);
                        alert_5.setType(AlertType.ERROR);
                        display.setCurrent(alert_5);
              catch (Exception e)
                   Alert alert_4 = new Alert("Error","Error on first try"+e,null,null);
                   alert_4.setTimeout(Alert.FOREVER);
                   alert_4.setType(AlertType.ERROR);
                   display.setCurrent(alert_4);
              quit();
         

  • HT204053 I have different icloud and iTunes id's and I want to do homesharing for all my devices. I'm trying to set up a new iMac but homesharing is not working. SHould it be the itunes or iCloud id?

    I have different icloud and iTunes id's and I want to do homesharing for all my devices. I'm trying to set up a new iMac but homesharing is not working. Should it be the itunes or iCloud id?

    Welcome to the Apple Community.
    Preferably your iTunes account, but it shouldn't really matter for getting homesharing turned on, as long as it's a valid ID.

  • After reformatting my 1 Tb WD ext drive and tinkering with the "exclude these items" list, I now get the following error message from Time Machine:Are you sure you want to back up to the same device your original data is on? the WD disk has mounted??

    After reformatting my 1 Tb WD ext drive and tinkering with the "exclude these items" list, I now get the following error message from Time Machine: "Are you sure you want to back up to the same device your original data is on?"  I've reformatted in Disk Utilities...not sure what I did wrong.  Any help would be appreciated.

    Not sure what you mean by "booted" from it.
    If the Mac OS is installed on the external drive, then it's possible to start up from it, just as you do from your internal drive. Please open the Startup Disk preference pane in System Preferences, and verify that your internal drive is selected as the startup disk.
    Assuming that's the case, then it may be that your TM settings have been corrupted. Turn off TM, then move or delete the file /Library/Preferences/com.apple.TimeMachine.plist. Turn TM back on, recreate your settings, and try again.

  • I am using FCPX 10.1.3. and want to duplicate my project, and its complete resources, to a different hard drive.  When I click "duplicate", it automatically duplicates the project in its current hard drive.  How do duplicate to a different hard drive

    I am using FCPX 10.1.3. with Yosemite, and want to duplicate my project and its complete resources to a different hard drive.  When I click "duplicate", it automatically duplicates the project in its current hard drive, unlike the previous FCPX that gave you options. How do duplicate to a different hard drive?

    Since projects are now stored in events and events are stored in libraries, you need to create a new l;bray on that different drive or open an existing library on that drive. Then duplicate your project and move it to the new library. It will copy the media. Then use the Consolidate Project File command to round up any external assets; there may or may not be any.
    Russ

  • Where is "Save As"?  (Want to move a project)

    iMovie project files are HUGE. I accept that. I wanted to move my project from one disk to another. Somehow, last week, I imported my raw video to my Firewire drive, but the project files stayed in my Movies directory on my system drive.
    How do I move my project to another drive?
    I corrupted my project trying to hack it (moving the files and editing the location by hand).. my bad. I just didn't see an option to open a project, then save it whereever I want. Didn't the old iMovie have this option?
    Love iMovie 08!

    Exactly (..why they don't bundle projects, events, etc in one package that you're free to move around..).
    I have my projects on a disk known as "/Volumes/LaCie Disk". I cannot move it -- I tried. There is no option in the File menu or Preferences. When you import a movie you can specify where the Event files go -- that's it -- FOREVER.
    You can actually drag the event directories around, just not the .rcproject files (the files that have my painstaken editing data).
    Looking in the .rcproject directory there are several files - some binary - some ascii with compressed data in XML format. In both cases you see "/Volumes/LaCie Disk" hard-coded into the file. I tried editing the "/Volumes/LaCie Disk" entry, but, alas it didn't work. If I want to edit my .rcproject a year from now I will have to do it at a location called "/Volumes/LaCie Disk".
    Apple, please, please add a Save As option to iMovie 08 -- soon!

  • I want to do a project in Labview which controls 5 light bulbs which lights in a room.

    I want to do a project in Labview which controls 5 light bulbs which lights in a room. The switching on of light bulbs depend on amount of sunlight falling on a LDR. Small intensity of sunlight should cause the lighting of one bulb after the other. I need some help in writing my program in Labview.

    kasamaneka wrote:
    I want to do a project in Labview which controls 5 light bulbs which lights in a room. The switching on of light bulbs depend on amount of sunlight falling on a LDR. Small intensity of sunlight should cause the lighting of one bulb after the other. I need some help in writing my program in Labview.
    LDR is a resistor whose resistance decreases with increasing incident light intensity... I know, you are already aware of what LDR is...!!
    --> Well what exactly you want a LabVIEW program to do in this setup of yours...??
    --> If you want LabVIEW to take control and lit different bulbs, based on the light intensity, I would like to know, how exactly you planned to measure the resistance variation of LDR??
    --> What DAQ are you using??
    --> Are you aware that DAQ cards can measure the voltage across a shunt resistance (here LDR) and indirectly tell you the variation in the resistant, provided a constant current passing through the resistance.
    I am not allergic to Kudos, in fact I love Kudos.
     Make your LabVIEW experience more CONVENIENT.

  • My device are stolen and i want to remove my data in my device .i don't turn on find my i phone .will i have to do ?

    my device are stolen and i want to remove my data in my device .i don't turn on find my i phone .will i have to do ?
    my data are important with me and i am very worried with this trouble

    Hi ..
    Follow the instructions here >  What to do if your iOS device is lost or stolen

  • I want to run automation test in multiple device say iphone and ipad or two iphone device Is it possible.I have done automation testing using UIAutomation and get it running from iphone device

    I want to run automation test in multiple device say iphone and ipad or two iphone device Is it possible.I have done automation testing using UIAutomation and get it running from iphone device

    plzzz reply to this question as soon as possible

  • MIDP 2.0: Problems on real device

    Hi All,
    im experiencing an issue with my small midlet. I wrote it using NBeans5Beta and tested on WTK 2.3 and it worked fine- without any exceptions beeing thrown etc. But on real device I have - Moto V600 (MIDP 2.0, CLDC 1.0) it crashes in some strange way.
    The app has several classes with their forms. An those forms it is possible to 'click' on some items and this navigates to the same forms but with a bit different content. It looks like this:
    1. Class 1 has its form (FormClass1) - that is created& populated on creation and modified when handling an item command from this initial form. This form serves as micro browser through hyperlinked pages.
    When on a specific textitem a command is invoked the class just clears the form using:
    FormClass1.deleteAll()
    changes the title:
    FormClass1.setTile("xxx")
    and adds some new elements (text items) to the form.
    2. Class2 has also its form (FormClass2)- and behaves exaclty the same as class 1 with one remark - no title is changed.
    When I run the midlet on WKT simulator - it works just fine - no issues, crashes, exceptions. Ive tried with several sims (some Moto provided, WKT several versions) and it works.
    When I upload it to my V600 - it crashes on Class1 when 'clickin' an action that rebuilds the form. One important remark here is that once I click the link on Page1 (ex. targeting to Page2), i can see that my form is reloaded with Page2 contents - but when I only press my up or down button on the mobile (what makes navigation on page elements) - the app exits - im back on my phone main screen. The message is that application performed some incorrect operation.
    What is even stranger - is that when I perform same operations for Class2 - it works - i can delete all elements from its form - readd new elements and still navigate without crashes.
    From the code perspective those two classes looks almost the same (structure). And this makes me even more confusing.
    Can I test it somehow on my PC (simulator) with some more strict restrictions - that I will catch this issue and can debug it ?
    Looking for help.
    Thanks in advance
    Cheers
    hypark

    Huh, answerying my own questions ( i do not expect any dollars from that :)).
    Anwyay - doing new Form() instead of deleteAll on FormClass1 helped a lot :). Still dont know what is the root cause of that situation but now will look into it more efficient.
    For Moto phones there is a nice utility called Midway (2.*). Once U have an USB cable You can track with that utility the output from Midlet running on real device (both exceptions, and System.out/err statements :)).

Maybe you are looking for

  • PCS no longer sees Bluetooth Widcomm driver

    Hi I have a 6230i and a Safecom BT dongle using the Widcomm 1.4.2 build 10 BT driver s/w on Vista. This all used to work OK, but after installing PCS v6.85.14.1, the Nokia Connection Manager now no longer shows the Bluetooth (Widcomm) option - just t

  • HT201269 Is there a way to download/port the missing data/SMS to one iPhone without overwriting the new SMS on the newer iPhone?

    SMS Transferring/downloading/backup : Is there a way to download/port the missing data/SMS to one iPhone without overwriting the new SMS on the newer iPhone? Here is my dilemma. My iPhone quit working and I couldn't get it fixed as quickly as I neede

  • A sleeve exclusively designed for the retina 15" macbook pro?

    I want to buy a sleeve for my 15" retina macbook pro, but i realize that there are a lot of sellers that advertise their prodcuts as "made for retina" but in reality they were made for the classic macbook pro, so they fit loose , baggy... can you rec

  • Statistics Help

    If anyone can clarify this for me it would be greatly appreciated. Can statistics collection be classified in 2 groups, Optimizer and Performance (AWR) Tuning? I ask this because I am reading Oracle 10g Admin Workshop I, chapter 12 "Proactive Monitor

  • Starting over with ical

    I trashed much of my ical folders in an attempt to start anew with ical because it was giving me so much trouble. Now it won't sync with my palm at all. What can I do?