How to resolve NoClassDefFoundError ?

hello friends,
I have to add a referenced library in my j2me Project. I am Using Eclipse IDE.
In Eclipse IDE
I add the external jar file in "Buld Path". Application is being compiled successfully but at the Run Time NoClassDefFoundError is thrown by JVM.
How to include that reference library in my J2ME project.
Please help.

There is a CLASSPATH section in a launch configuretion, have you tried it?

Similar Messages

  • I bought an I pad 2 from us but I can not activate the Facetime in UAE(Dubai)as I can not see the country in the I pad's  drop list, anyone has an idea as how to resolve this issue

    I bought an I pad 2 from us but I can not activate the Facetime in UAE(Dubai)as I can not see the country in the I pad's  drop list, anyone has an idea as to how to resolve this issue

    I'm not that familiar with how FaceTime works. I know how to set It up but I don't use it. I just know that you can't activate in the UAE. I believe that you can activate in any country that permits it's use. Whether you will need a new ID or not, I can't confirm.
    You can Google this and get all sorts of articles on workarounds. Apparently if you set up a VPN you can use it in the UAE. Here is one article that I found.
    http://talkfree7.blogspot.com/2010/09/how-to-facetime-voip-call-from-uae.html
    I Googled "workaround for FaceTime in UAE" to find this.

  • How to resolve #Multivalue Error

    HI All,
    I have a data like below, in this for inpatient data is NULL and as per business requirement  if data is null then "0". so i create a variable and drag into inpatient's total column
    statement for inpatient is
    =If IsNull([total]) Then 0 Else [total] Where ([items]="Inpatient")
    items                                    total
    Office
    4    
    Utilization
    70
    Inpatient
    it is working and showing as "0"
    but when inpatient has value it is showing #multivalue"
    Office Visits
    4
    Non-Emergency ED Utilization
    70
    Inpatient Stays
    40
    how to resolve is issue
    Please reply i am using SAP BO 3.1 INFOVIEW
    Thanks in advance
    Ranjeet

    Hi Ranjeet,
    First thing is you are getting this error because of the where clause used in the variable.
    Because in the 2nd case when it has value for Inpatient, it is actually taking the same value for all the 3 cases.
    How to remove null value with 0:
    1. Remove where clause from the variable and use that variable in place of Total in the table report.
    2. Use format number option to place 0 in place of undefined values.
    Hope it helps. Please ask if you have any queries.
    Regards,
    Subrat

  • TS1702 Does anyone know how to resolve the problem of apps not being able to download in the App Store? After the IOS 6 update I haven't been able to download any apps.

    Does anyone know how to resolve the problem of apps not being able to download in the App Store? After the IOS 6 update I haven't been able to download any apps.

    Maybe here:
    IOS 6 App store crash: Apple Support Communities

  • When i login to MES operator resp..i get a error saying...You must setup an HR employee for this Oracle Application user...how to resolve this?

    when i login to MES operator resp..i get a error saying...You must setup an HR employee for this Oracle Application user...how to resolve this?

    Hey everyone in Apple world!
    I figured out how to fix the flashing yellow screen problem that I've been having on my MBP!  Yessssss!!!
    I found this super handy website with the golden answer: http://support.apple.com/kb/HT1379
    I followed the instructions on this page and here's what I did:
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    I went through the 6 steps above twice, just to make sure I got rid of whatever stuff was holding up my bootup process.  Since I did that, my MBP boots up just like normal.  No flashing yellow screen anymore!!   
    (Note that I arrived at this solution when I first saw this page: http://support.apple.com/kb/TS2570?viewlocale=en_US)
    Let me know if this works for you!
    Elaine

  • I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    Can you open the Preview program without loading a file, like by itself?
    If it doesn't load then I suspect a corrupt Preview preference file.
    Deleting the System Preference or other .plist file
    Can you open other files with Preview, like jpg's and images?
    How about other PDFs? or is it just that one you have downloaded?
    Run through this list of fixes
    Step by Step to fix your Mac

  • How to resolve many-to-many join by 2 one-to-many joins

    Hi,
       I was asked many times how to resolve many to many relationship between two tables. I read to use 2 one -to- many relationships to resolve this. Can some expalin me when many to many relationship occurs between two tables and how to reslove them with practicle examples. Is there any article on this?
    Regards,
    Nanda Kishore

    Hi,
    Please check below link.
    http://www.forumtopics.com/busobj/viewtopic.php?p=859029&sid=20d79e3df07b0d8b41aadfbd902bb6b2
    http://blog.oaktonsoftware.com/2011/04/bridge-tables-and-many-to-many.html
    Thanks,
    Amit

  • How to resolve a host name from IP using JNDI/DNS service provider

    Hi
    I got two questions on JNDI/DNS service provider:
    1) How to resolve a host name when i got an IP
    I understand How I do it inverse.
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.dns.DnsContextFactory");
    env.put(Context.PROVIDER_URL, "dns://"+server+"/"+domain);
    DirContext ictx = new InitialDirContext(env);
    Attributes attrs1 = ictx.getAttributes(host, new String[] {"A"});
    2) This example above works when I specify the domain in the provider url.
    If I am not specifing a domain but only the dns server I got an NameNotFoundException.
    What should I do if I don't got the domain?
    get the availible domains and loop on them?

    Hi,
    if your DNS server supports that, you can do a reverse DNS lookup. This works as follows:
    String server = "your.dns.server";
    String domain = "in-addr.arpa";
    String ip = "4.3.2.1";
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.dns.DnsContextFactory");
    env.put(Context.PROVIDER_URL, "dns://" + server + "/" + domain);
    DirContext ictx = new InitialDirContext(env);
    Attributes attrs1 = ictx.getAttributes(ip, new String[] {"PTR"});1: Use the pseudo-domain in-addr.arpa
    2: Use the reverse IP address for lookup, i.e. if your host has 1.2.3.4, use 4.3.2.1!!
    3: Request the PTR attribute
    see also [http://en.wikipedia.org/wiki/Reverse_DNS_lookup|http://en.wikipedia.org/wiki/Reverse_DNS_lookup]
    Martin

  • How to resolve this Error ORA-04030: out of process memory when trying to a

    Hi
    I am connecting as a sysdba and trying to execute a query on the V$Logmnr_contents but getting the following Error
    ORA-04030: out of process memory when trying to allocate 408 bytes (T-LCR
    structs,krvuinl_InitNewLcr)
    Can anyone guide me how to resolve this issue.
    Thanks

    Hi,
    As root user, edit the /etc/sysconfigtab file, and try to set the udp_recvspace parameter to 262144 and reboot the machine :
    inet:
    udp_recvspace = 262144
    Metalink note 297030.1 Ora-04030 During Execution Of LogMiner Query
    Nicolas.

  • How to resolve the error -1073807339 when using Agilent LAN/GPIB Gateway (E5810A)?

    Dear Sir/Madam,
    Appreciate that you could advise me on the following error occur when connect power meter E4419B to computer via E5810A LAN/GPIB Gateway(remote interface) & run with Labview: 
    -1073807339
    VISA Write in E4419_read_power.vi
    I have added 5s timeout to Labview program but the result as previous.
    There no error occurs when the power meter to computer via USB/GPIB interface(82357B).
    Is it related to E5810A driver or the program I wrote?
    How to resolve it?
    Attachments:
    E4419_read_power.vi ‏16 KB

    Hi.
    I'm experiencing the same problem when connecting a laser controller (New Focus Vortex TLB-6000) via the Agilent E5810A to a PC.  
    There are no problems when connected through a regular serial port, but timeouts arise every few seconds through the E5810A.  I have another controller (SRS LDC501) which works very well with a second Agilent console.
    Have you managed to find a solution to this problem?
    Thanks,
    Orel.

  • When I upgraded to IOS5, my playlists no longer appear on the iPOD.  When I do a Sync, the playlists appear, but will not sync to the iPOD.  Any suggestions on how to resolve??

    When I upgraded to IOS5, my playlists no longer appear on the iPOD.  When I do a Sync, the playlists appear, but will not sync to the iPOD.  Any suggestions on how to resolve??

    I would understand it if you checked email on your Mac, and then those messages were not available on your iOS devices if you had the advanced account setting "remove copy from server after retrieving message:" set to immediately. 
    I looked through my iPhone settings and don't even see an option to tell my phone to pull the only copy of a message and delete it from the server.
    Possibly there is another setting in Lion (I am running Snow Leopard still) that tells your Mac to only synchronize mail to your iOs devices and is not pulling mail directly from iCloud. 
    You could try disabling your current iCloud email account in Mac Mail, and adding a new one and just telling Mail it is a standard IMAP account (imap.mail.me.com incoming and smtp.mail.me.com outgoing).
    I did that for Leopard to get my email even to work after MobileMe is cancelled and it seems to work fine with my iPhone.
    If that doesn't work, you can delete that new email account and re-enable the temporarily disabled iCloud email account from above.
    Hope this helps.

  • How to resolve on my iPad: Unable to connect to server error when trying to log into Game Center?

    When I try to log into the game center, i get an error message that says: unable to connect to server due to an error communicating with the server.
    I have logged off iTune and any other app I was logged in, I have done a hard reset of my iPad, I have reset my modem, but nothing had any impact and I am now frozen out of my game center.
    Anybody has an idea of how to resolve this?
    Thanks,
    J

    1) May be there is a mismatch with the jar file name and the filename in the jad properties ( happens only if you rename the jar file)
    2) Check hollywood jad properties and the ringtone jad properties. May be the complete url is required for the jar file.
    3) If you are using any restricted APIs in your midlet, then make sure your jad properties has the required permissions.

  • How to resolve this issue??

    I have given box / borders for cells in the table in smartforms. in main window.
    Now when i print with HPlaser the output comes fine.
    But when i use Epson - The borders almost print 5 to 6 times bigger & looks to ugly and even the data is not shown. Meaning the data is overshadowed by the borders of the Cells.
    Tried to reduce the <b>width</b> in the BOX option of TABLE in smartforms. By default it is 15.00 TW.  did not work.
    EPSON is what they want to use.
    Please let me know how to resolve this issue.
    Regards,
    Siva

    Hi Siva,
    Ask them to provide the Diamension of what paper type they
    are using for EPSON, becoz U might have kept paper size
    as A4 and there they might be using INCH12 or some other size
    of paper( not Sure ).So if u can have the Exact paper format that
    they are going to use , u can design ur form in that paper format
    and then check.
    Regards
    Avi.....

  • How to resolve the error ORA-12560 TNSprotocol adapter

    I am using Oracle 9i release 2 database on my window xp machine. My database created using DBCA during installation is working fine . Now i want to create the database manually, When i set SET ORACLE_SID=newdb and try to connect to like this
    c:\sqlplus /nolog
    enter username:sys/sys as sysdba
    gives an error ORA-12560 TNSprotocol adapter
    how to resolve this error

    see this:
    ERROR:ORA-12560: TNS:protocol adapter error
    see post of user601010

  • How to resolve attribute errors

    Hi,
    When I am trying to click on an lov item I am getting the following error
    Attribute TransactionTypeId in CreateArInvoiceAM.CljReceivableSlipsEOVO1 is required
    I would get the TransactionTypeId only when I select an item from the lov but before selecting the lov itself I am getting this error.Can anyone tell me how to resolve this error.
    Thanks for your help in advance.

    Do you have any open method invocation in the processFromRequest? Just start the debugger and see how is the code progressing. Seems some method is getting invoked unintentionally.

Maybe you are looking for

  • I have an older TV (not HD). Can I use Apple TV?

    Do I need a specific TV to use Apple TV?

  • How to use the cam as a web cam

    How could i use the cam , which is already installed in the mac book pro as a web cam ?

  • IPhoto 08 doesn't import RAW

    Hello everyone, Would be grateful for your help. I just recently got a MBPro, imported photos into iPhoto which is fine with Jpegs. I have a lot of photos taken with Sony DSC-R1 camera and when I try to import the Raw photos from the folder in which

  • Lightroom 5.6 crashes on entering settings

    Hi, after reinstalling my complete system (windows 8.1), I installed Lightroom 5.6 64bit (through adobe cloud). Everytime I try to enter "settings", lightroom crashes without telling a reason... Even with an empty catalog ! I tried deleting the prefs

  • Ipod classic damaged  ? disk utility says stuff like "no clusters"

    hi, my ipod classic seems to be strange, i went to disk utility and click verify i get what is pasted below. if i click repair it seems to repair something but when i start over and click verify i get this again Verifying volume "POD" ** /dev/disk2s1