CAP failed [Eclipse plugin] when using more 99 classes in project

Hello I have a problem with the Eclipse Plugin...

as soon as I have more classes and 99, then the build process failed (Cap) - here are the details on my system

Eclipse platform
Version: 3.4.1
Build id: M20080911-1700

BlackBerry JDE plugin for Eclipse 1.0.0.50

BlackBerry JDE 4.7.0 component package

When my project has less files of 100 class (classes internal incl.), then all is well... as soon as I have 100 or more classes, so I'll take:

Executing rapc for the project My100ClassTest at Tue Feb 10 13:50:47 CET 2009.D:\DEV\ide\eclipse3.4\plugins\net.rim.eide.componentpack4.7.0_4.7.0.36\components\bin\launcher.exe D:\DEV\ide\eclipse3.4\plugins\net.rim.eide.componentpack4.7.0_4.7.0.36\components\bin\rapc.exe  -quiet import=..\..\ide\eclipse3.4\plugins\net.rim.eide.componentpack4.7.0_4.7.0.36\components\lib\net_rim_api.jar codename=..\My100ClassTest\My100ClassTest ..\My100ClassTest\My100ClassTest.rapc -sourceroot=D:\DEV\projects.bb\My100ClassTest\src D:\DEV\projects.bb\My100ClassTest\binI/O Error: CreateProcess: jar -cfm D:\DEV\projects.bb\.BlackBerry\..\My100ClassTest\My100ClassTest.jar C:\temp\rapc_7beb8a9f.dir\META-INF\MANIFEST.MF -C ..\My100ClassTest My100ClassTest.cod -C ..\My100ClassTest My100ClassTest.cso -C C:\temp\rapc_7beb8e83.dir . error=2rapc failed for the project My100ClassTest

so it seems that for some reason the Eclipse plugin is more able to manage projects less 100 class... would this be the case?

Please find attached a simple test class (with which this problem could be easily reproduced) - building of this class with Exclipse cause a message "failed to cap" - by removing the line "private class DUMMY000 {};" do the work of project...

package com.emacf1.bb.test;

public class DUMMY { public static void main(String[] args) {  } private class DUMMY000{}; private class DUMMY001{}; private class DUMMY002{}; private class DUMMY003{}; private class DUMMY004{}; private class DUMMY005{}; private class DUMMY006{}; private class DUMMY007{}; private class DUMMY008{}; private class DUMMY009{};

   private class DUMMY010{}; private class DUMMY011{}; private class DUMMY012{}; private class DUMMY013{}; private class DUMMY014{}; private class DUMMY015{}; private class DUMMY016{}; private class DUMMY017{}; private class DUMMY018{}; private class DUMMY019{};

  private class DUMMY020{}; private class DUMMY021{}; private class DUMMY022{}; private class DUMMY023{}; private class DUMMY024{}; private class DUMMY025{}; private class DUMMY026{}; private class DUMMY027{}; private class DUMMY028{}; private class DUMMY029{};

  private class DUMMY030{}; private class DUMMY031{}; private class DUMMY032{}; private class DUMMY033{}; private class DUMMY034{}; private class DUMMY035{}; private class DUMMY036{}; private class DUMMY037{}; private class DUMMY038{}; private class DUMMY039{};

   private class DUMMY040{}; private class DUMMY041{}; private class DUMMY042{}; private class DUMMY043{}; private class DUMMY044{}; private class DUMMY045{}; private class DUMMY046{}; private class DUMMY047{}; private class DUMMY048{}; private class DUMMY049{};

   private class DUMMY050{}; private class DUMMY051{}; private class DUMMY052{}; private class DUMMY053{}; private class DUMMY054{}; private class DUMMY055{}; private class DUMMY056{}; private class DUMMY057{}; private class DUMMY058{}; private class DUMMY059{};

  private class DUMMY060{}; private class DUMMY061{}; private class DUMMY062{}; private class DUMMY063{}; private class DUMMY064{}; private class DUMMY065{}; private class DUMMY066{}; private class DUMMY067{}; private class DUMMY068{}; private class DUMMY069{};

   private class DUMMY070{}; private class DUMMY071{}; private class DUMMY072{}; private class DUMMY073{}; private class DUMMY074{}; private class DUMMY075{}; private class DUMMY076{}; private class DUMMY077{}; private class DUMMY078{}; private class DUMMY079{};

  private class DUMMY080{}; private class DUMMY081{}; private class DUMMY082{}; private class DUMMY083{}; private class DUMMY084{}; private class DUMMY085{}; private class DUMMY086{}; private class DUMMY087{}; private class DUMMY088{}; private class DUMMY089{};

  private class DUMMY090{}; private class DUMMY091{}; private class DUMMY092{}; private class DUMMY093{}; private class DUMMY094{}; private class DUMMY095{}; private class DUMMY096{}; private class DUMMY097{}; private class DUMMY098{};}

Thanks in advance

Matthias

Today, I found the solution to my problem... rapc.exe does not make use of the Configuration of virtual machine JAVA Eclipse - this means that rapc.exe will use the javac.exe & jar.exe located 'somewhere' (in my case the Microsoft stuff)...

as a workaround, I added my favorite '... \jdk\j2sdk1.6.0_06\bin' & '... \jdk\j2sdk1.6.0_06\lib' at the beginning of my system PATH environment variable.

I hope this will help others with similar problems

Matthias

Tags: BlackBerry Developers

Similar Questions

  • ORA-19228: XPST0008 - identifier not declared when using more then a var.

    HI gentlemen,

    Given an XMLTYPE table with only one line. Under the root element, it has a header of <>and < body > where things inside the body has a different namespace. When I try to dig with the statement in p.SQL/ below, I always get

    SQL > @c:\xsl\p
    Z
    *
    FEHLER in line 10:
    ORA-19228: XPST0008 - nicht deklarierter identifier: Prafix 'j' lokaler name "(undeclared identifier)

    I have also tried to include a WHERE clause, he always complains with $j. When I use only a single variable, $i, that's OK. DB XML Developer's Guide includes examples that are very close to that - they run A1. Can you help me where I'm wrong?

    Thank you, best regards
    Miklós HERBOLY
    SELECT 
       XMLQuery('xquery version "1.0"; (: :)
       declare namespace n1="urn:ehd/001"; (: :)
       declare namespace n2="urn:ehd/go/001"; (: :)
       for $i in /n1:ehd/n1:header
    let $j := /n1:ehd/n1:body/n2:gnr_liste/n2:gnr
       return $i,$j'
       PASSING xml_document
       RETURNING CONTENT) as ziffer
      FROM z 
    /

    Hi Miklos,

    You need parentheses to indicate that you return the sequence of $i and $j:

    xquery version "1.0"; (: :)
    declare namespace n1="urn:ehd/001"; (: :)
    declare namespace n2="urn:ehd/go/001"; (: :)
    for $i in /n1:ehd/n1:header
    let $j := /n1:ehd/n1:body/n2:gnr_liste/n2:gnr
    return ($i, $j)
    

    or a shorter version (if there is only one header per document):

    xquery version "1.0"; (: :)
    declare namespace n1="urn:ehd/001"; (: :)
    declare namespace n2="urn:ehd/go/001"; (: :)
    (
      /n1:ehd/n1:header
    , /n1:ehd/n1:body/n2:gnr_liste/n2:gnr
    )
    
  • CAP and images in the construction and the line of command vs eclipse plugin

    Hello

    I tried to get the CAP to compile our project from the command line with a lot of frustration.  All I want is a COD compiled with images (/res all inclusive)

    First of all, the eclipse console output doesn't seem to work exactly when run from the Windows command line, so there are many more things in the background that makes the plugin.

    It's the console output:

    C:\development\eclipse-java-galileo-SR1-win32\eclipse\plugins\net.rim.ejde.componentpack4.5.0_4.5.0.21\components\bin\rapc.exe codename=deliverables\Standard\4.5.0\WCUL deliverables\Standard\4.5.0\WCUL.rapc -sourceroot=C:\development\blackBerry\workspace\Azimuth\src;C:\development\blackBerry\workspace\Azimuth\res;C:\development\blackBerry\workspace\Azimuth\test -import=C:\development\eclipse-java-galileo-SR1-win32\eclipse\plugins\net.rim.ejde.componentpack4.5.0_4.5.0.21\components\lib\net_rim_api.jar;..\MobileDBLibrary\deliverables\Standard\4.5.0\mobileDbLib.jar;..\MicrologLibrary\deliverables\Standard\4.5.0\micrologLoggerCore203.jar;..\AnalyticsLib\deliverables\Standard\4.5.0\flurryAgent12.jar C:\development\blackBerry\workspace\Azimuth\bin
    

    Basically, which resembles CAP is executed on the precompiled classes.  This runs directly from the command line in the same environment:

    ...
    Warning!: No entry points found
    Optimizing
    Populating
    Warning!: No definition found for exported static routine: .main(String[])
    No errors.
    

    You get a COD in the output directory, no JAD and trying to load on the device is not successful (app does not seem to be on devicejava)

    Many positions and from my own experience, it seems that the CAP removes all the binary images even if they are on the path (import, sourcelist, etc.).

    I tried a workflow to:

    * compile sources (javac)

    * pot of classes and resources (images)

    * preverify jar

    * the cap on the jar

    This seems to work well, but running on the device - with all the loaded libraries - returns

    Error starting :
    Module '-1' has verification error 421 at offset 42e6
    

    This jar compiled Cap (checked all resources of the pot) does not contain any class - just the COD files - that is an anomaly of the release of eclipse Cap pot.

    Somehow the eclipse plugin Gets a sliding Cap compilation successful with the resources at the right time.  I would like to know how.

    Thank you

    PS I tried this with bb-ant-tools and command line.  about 1000 permutations of all the above

    I couldn't get the jar solution works, but it's basically what I was doing with rapc.exe.

    However, this post, has helped tremendously:

    http://codeforfun.WordPress.com/2008/10/05/How-to-get-images-in-your-cod-for-BlackBerry/

    So, after a few violin, I have all workers:

    • compile with Cap
    • pot update
    • compile with Cap
    • sign
    • updated jad (I have other libraries, use a macrodef here)
  • Is it normal to use more 9 000 000 k of memory (private beach) when working on 3-4 photos with about 10 to 12 layers when CC running?

    I started using CC in December with absolutely no problem. In April, CC suddenly started crashing on me when I was running some actions that I used for years. My first thought was that my computer was going badly. This began a two-month process to eliminate possible computer problems. Patches have been as follows:

    Installed new SSD.

    Installed the new disc storage of 2 t.

    Install the new video card and power supply to run the new video card.

    I am operating Windows 7 with 16G of RAM on a quad core, that should be more than enough to handle the demands of CC. It worked well for four months, then obviously he is capable of doing the job.

    $400 CC later, always crashed when using certain actions.

    A test, I tried running the same files with the same actions on the computer of my husband, who is a more recent year. CC, crashed on his as well when the acts have been run. After much head banging, tears and communication with Adobe, it was determined that it is not uncommon for older stock may not be compatible with versions of photoshop. So, I spent weeks reworking my entire workflow to redo/remove what I had learned to count on.

    Fast forward to today. I fixed everything I know how to fix, but I still have to be VERY careful not to push too hard CC. I used to be able to work on 6 pictures at a time, with 10-15 layers on each photo. CC NEVER crashed on me. Now, I can barely work out 2 or 3 photos and it will crash if I do not pay attention on the execution of an action at a time (instead of batch processing) and that I should keep my layers to a minimum. During the time I was trying to understand the problems of my computer, I started to pay more attention to my use of the memory while CC has been opened. Before all the changes, I would use 5-6, 000, 000 k memory with only 2 or 3 pictures open. AFTER all the patches, I continue to use a crazy amount of memory.

    Things to consider before you offer suggestions:

    * Yes, I have re-installed CC about 5 times after my computer updates, mostly because I couldn't get my actions to be completed. So I don't think that a reinstall will help.

    * I tried to remove most of my actions of CC, and it made no difference in the use of memory. In addition, when I did the test on my husband's computer, the only installed actions were rare I tried to test.

    * I have disabled the automatic backup and recovery function. Still no difference.

    So, the bottom line, my question is if it is normal to use so much memory when you perform these simple tasks? Most of my layers are levels, curves, filling and a layer of sharpening and filter noise. It does not appear those who would be considered intensive task. Not only that, but also when I did the test on my husband's computer, I checked its memory usage, and it didn't even break 2 000 000 k at the same time I was with 5-6, 000, 000 k for the same task. And he has only 12G of RAM. If SOMETHING is wrong! Is there a setting I need to change so that CC is not intensive Yes memory? I could see if I was doing something 3D graphics, but these are the simple photo changes I've done for years with no problems.

    Hope someone has some / suggestions on how I can get the use of the memory down so I can run CC as it is supposed to be - fast and efficient!

    Thanks in advance for any help!

    I also have a PC equipped with ATI (and that works fine), I compared your settings to mine and thought it was quite similar.

    I have noticed differences:

    • You have an AMD processor, while mine is Intel.  Is no problem in itself.
    • You have less RAM I'm, once again no problem 16 GB is fine for Photoshop.
    • Your use of Photoshop RAM limit is smaller than mine, it is something that you could experiment with changing.  On a 16 GB system I suggest move it up to at least 80% (and don't forget to close and reopen Photoshop after changing).
    • You have a monitor while I have three.  Yours is the most common configuration, no problem.
    • You use an ATI video card slightly different that I do, but you have the same version of the installed driver - catalyst 14.4, which is generally known to be good with Photoshop.
    • You have any records of work parameters, but you have more than enough free space (more than I do actually).
    • You have a slightly older versions of several common libraries Microsoft Visual Studio, that is because I have a newer version of Windows.  Once again, no problem.
    • You have Camera Raw 8.4.1 while I have 8.5.  It is because of very recent updates.  I doubt that is why you have a problem, but you can update.
    • You have a console installed plugin Imagenomic, as well as a plugin called portrait.  You can try to temporarily remove these plug-ins to see if the operation of Photoshop is stabilized.  In addition, you should check to see if they have released updates, which you can download.

    Finally, after all is said and done, I see that you are in Photoshop 14.2.1...  You CAN try to download and install the just released Photoshop (2014) through the creative cloud application.

    Since it is a whole new separate program from the one you already have installed, it would give you the opportunity to try Photoshop with the own default settings and not plug-ins, while you'll still have all your settings in the old version.  So, if you find it works very well, you can migrate your presets of your old 14.2.1 version.  At some point, you will probably want to run the new version anyway, for that implemented new features implemented by Adobe.

    -Christmas

  • I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    iPhones have a proximity sensor which is supposed to automatically turn off the screen when you hold it in your face. If this is not the case you can take the phone and have it checked.

  • Eclipse plugin not walk when not step over after the breakpoint

    I run my application in the Eclipse debugger and hit a breakpoint. When I hit F5 or F6 to step over to rush in (doesn't really count) breakpoints are not executed. Sometimes I can hit ctrl-R to run a line. Code works fine when you are not debugging, or if I tap F8 CV with breakpoints, disabled or deleted. I'm under Eclipse 3.4 BB JDE plugin 1.0.0.67 and the component Pack 4.5.0.16. I can interrupt threads, see the stack traces, inspect the variables and all that stuff. My problem is that I can't get into or step over after hitting the first breakpoint.

    I have only one project in my workspace. I ran clean.bat. I'm manually switch to the Debug perspective to launch the debugger.

    Ideas anyone?

    Ran the app with only the main message enabled (base HellowWorld app) loop and the problems remain.

    Recreated the project in JDE 4.7 and everything works great.

    People... the Eclipse plugin needs to work [smile].

  • Slow Server 2008 performance when you use more than 1 CPU - bug?

    Hello

    It seems that when I run Server 2008 on one of my boxes 3 10.5.7 if I use more than 1 CPU in the settings, the ankles of machine the CPU while booting and then during the use of the operating system.  Normally, I have to run all 3 of them at the same time... and if I get all 3 virtual machines running, the CPU remains just pegged and slows down the machine.

    Then, if I close everything and change the settings to 1 CPU, virtual machines work fine, the CPU barely sees any activity and 75% of the 8 GB is used and it can run for weeks at a time without any problem.

    My 3 VMs

    1 Server 2008 x 64 w/Exchange 2007 2 GB, 1CPU

    2 Server 2008 x 86 File Server/Anti-anti-virus/utilities/Quickbooks, etc. 1 GB, 1CPU

    3 Server 2008 x 86 Active 1 GB, 1CPU Directory

    My Mac run all 10.5.7

    1 Macbook Pro 2007 2.33 Core 2 Duo

    1 mac Pro desktop 2008

    Rig EFIX running 10.5.7

    1 EFIX EP45-DS3R Q9550

    all the boxes are running 10.5.7 with the EFIX running 10.5.7 platform server and I can recreate in one of the 3 machines, 10.5 server or workstation, etc.

    Yes, I have the tools are installed and uses the latest patches, software, etc.

    Thanks for any help...

    VCPU more inside a virtual machine using could be a big problem, if you don't have much physical basis.

    If you set vCPU # = # pCore, then you will have several performance issue, cause you VM hangs (during its run) ALL of your hearts.

    André

    * If you found this device or any other answer useful please consider awarding points for correct or helpful answers

  • Signature keys - Eclipse Plugin

    Hello
     
    I received the signing keys and followed the instructions provided. I used Eclipse to sign the apps, but it does not work (message "unsigned" was shown). However, I was able to sign the application using JDE. After that, I uninstalled the signing keys in order to start over with the instructions. Then I wanted to save the keys to signature on the same machine, but the following message is displayed: «...» »

    "blackberry failed to register the customer because there is no more trying to register if you are already registered with this server, then you must contact RIM to enroll users addiotional

    Can you advice what should I do now?

    Thank you
    Gaston

    You can not install the keys of RIM signing more than once. Once you install the RIM signing keys, 3 files get generated in the bin folder of the computer JDE target (signtool.db, signtool.csk, signtool.set).  You must be this copy and put in you JDE version bin respective folder for the signature of the COD files.

    As fars as I know if you lose these 3 files generated, it is impossible to recover. Better communicate with the service the customer of RIM and get their advice. Maybe they will remember your key and send new signing keys.

    Also, please update that is recommended in this case RIM process because it will help others to be careful when using RIM signing keys.

  • Eclipse, plugin, found no BB JDE entry point

    I'm pretty new to Java and just to try my first app HelloWorld with BB JDE rain-gin for Eclipse.  I have read through a few early sections of the BB Device Application Startup Guide and have basically just copied the code in section 2.

    I can build the app without problems, but when I try to run on the Simulator, the sim card comes with JVM error 102 invalid code in filesystem and get the following output in the Console of BB generator:

    Executing rapc for the project HelloWorld at Thu Apr 02 23:56:33 EST 2009.
    C:\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\bin\launcher.exe C:\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\bin\rapc.exe  -quiet codename=..\HelloWorld\HelloWorld ..\HelloWorld\HelloWorld.rapc warnkey=0x52424200;0x52435200;0x52525400 -sourceroot=C:\Users\Tony\workspace\HelloWorld\src C:\Users\Tony\workspace\HelloWorld\bin
    Warning!: No entry points found
    java.lang.Object: Warning!: No definition found
    net.rim.device.resources.Resource: Warning!: No definition found
    java.lang.String: Warning!: No definition found
    com.rim.resources.HelloWorldRIMResources: Error!: Class: java.lang.String has no member: equals
    rapc failed for the project HelloWorld
    
    Executing rapc for the project HelloWorldBB at Thu Apr 02 23:56:35 EST 2009.
    C:\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\bin\launcher.exe C:\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\bin\rapc.exe  -quiet codename=..\HelloWorldBB\HelloWorldBB ..\HelloWorldBB\HelloWorldBB.rapc warnkey=0x52424200;0x52435200;0x52525400 -sourceroot=C:\Users\Tony\workspace\HelloWorldBB\src C:\Users\Tony\workspace\HelloWorldBB\bin
    Warning!: No entry points found
    java.lang.Object: Warning!: No definition found
    net.rim.device.resources.Resource: Warning!: No definition found
    java.lang.String: Warning!: No definition found
    com.rim.resources.HelloWorldBBRIMResources: Error!: Class: java.lang.String has no member: equals
    rapc failed for the project HelloWorldBB
    

    I don't see that I left something out of my Java code.  Also, I tried to find where the appeal of CAP is defined - can someone please point me in the right direction.

    I'm under Eclipse 3.4.2 and 8300 Simulator.

    FYI, I did an uninstall complete re - install Eclipse and the JDE plug-in and now it works fine.  I had prviously installed in are, unrelated with folders and also in the path of the users folder then maybe it had something to do with it.  This time, I installed under a dedicated path of BlackBerry and everything works fine.

    Thanks for your time.

  • Problem when using bb-ant-tools to create a multi-module application

    I am trying to redesign an application prototype into something more adapted to our needs. The prototype was built with the first version of the Eclipse plugin, but I've converted successfully to the current version.

    I have same configuration Ant with bb-ant-tools for it and have successfully build the application and the executable running on the real device.

    But this prototype had code to put them all in a single module, even the source to a third party library with support for managing messages JSON ('J2ME JSON").

    We need to build several slightly different applications from the same code base (differing mainly in aspects of the customer specific look and wording etc.).

    So I want to divide the code into several distinct modules, each providing it is build own artifacts and have a top-level project for each variant you want to produce.

    So at the beginning I want to have these three modules:

    • J2ME-json - the third party lib
    • Code base - the largest part of the source code and default localization resources
    • my-app - the main class, icon resources (and in the future some property files and resources specific to the customer location)

    I have Ant generate files for each module, which compiles and signs packages resulting - seems ok so far, no problem when executing the task of sigtool. The build for 'j2me-json' file and 'code base' defines the product as a type = "library".

    The build for "my-app" file collects the artifacts to build (* .jar, * .cod, etc.) and copy them to a local directory "dependencies", where they will be extracted for the compilation of the actual application. After compiling and signing all are copied to a deployment directory.

    Deploy the application on the device via the 'Desktop Manager' but when I run it on the device I get the error message:

    Error at startup MyAppId: Module ' code$ 2dbase ' attempts to access a secure API.

    The strange thing is, that the "Tool of Signature" window shows demand of signature of all modules during the phase of signature of the request, not only for the request form itself as the error message suggests. And I even sign the modules separately because of this message - but it does not help...

    So, what's wrong here?

    Here is the definition of the actual target of the relevant elements:

                                                                                          
    
                        
    
                                                                                                                                
    

    The *.alx file that looks like this:

             My App Name      1.2.1.35               MyAppId.codj2me-json.codcode-base.cod         
    

    I'd appreciate any help with this problem! Thanks in advance...

    Horst Weber.

    Found!

    My mistake was that I thought that I can mix attribute and property file inclusion statements in the task of jdp bb-ant-tools. My actual task for libraries looked like this:

    
    

    Obviously, the author didn't want to handle the ambiguity when someone sets the same property as an attribute, and in the file. So you should use either one or the other: If you use properties files, then declare all your properties here.

    So this message "Module attempts to access an API secured." seems to be very misleading: it disappered after correction of the generation of files and I now have a common application.

  • Ubuntu 15.04: firefox crashes, plugin-container using 90% CPU, 11 GB of RAM

    Once in a while (maybe once a week on average), Firefox crashes suddenly, and check the 'top' shows that the plugin-container uses 90% and more of CPU and RAM (I have 12 GB of RAM). So I kill firefox and when I restart, it works normally again.

    For extensions, I only LeechBlock (and changes of Ubuntu). For plugins I have Flash, Java, OpenH264 Video Codec and (apparently) iTunes application detector. Flash and Java are both updated.

    Because the problem somewhat rare occurrence, I was not able to reproduce, or to track down any kind of cause, but I thought he deserved the description anyway; a web search doesn't show anyone else reported the same problem.

    FredMcD not know if the OP was using Firefox on Windows and not on Linux as only your first link is applicable.

    The Flash Player and Java Plugins can be guilty. You must set them to "Ask to activate" so that they will work when you allow.

    I have a strong enough Linux system I find Flash Player setting to "Ask to activate" can still make a big difference as the Flash videos and ads will not play unless so authorized and I (i5 - 4690 k and 16 GB of Ram).

  • "Error starting Module not found" add external jar to eclipse plugin

    Hello

    I use the eclipse on Eclipse 3.4 plugin

    BB JDE 4.5

    8300 Simulator

    I'm trying to run a Midlet that sucessfully runs in eclipse for another smartphone (Samsung).

    The project compiles fine, but when I run it in the BB Simulator, it gives me the error:

    "error at startup MyApp: Module ' kxml2 - 2.3.0' not found."

    I added a jar for kmxl in the form of external jar file.

    Sometimes it get lost, don't know why. I had to add the jar file several times because once so that it cannot compile and it disappears from the list of libraries.

    In any case, the major problem is that he cannot run in the Simulator.

    I found several posts with the same problem, but the solutions they gave are JDE, not eclipse plugin.

    These solutions were to create a new project, made a library of BB and understand the project as a dependency in the main application.

    But how to solve the problem in plugin eclipse?

    Why add a pot as an external library is not enough?

    Why get lost from time to time?

    If we are to create a new project (it seems excessive to me thinking) how can we define everything in eclipse?

    Thank you

    Anna

    Check this thread.

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=22240#M22240

    Concerning

    Bika

  • Get exceptions expired when using HttpConnection

    I'm reading the information from a site, for example ("http://www.mysite.com/page.html") in my application.  I'm doing a call on the site using Connector.open ("http://www.mysite.com/page.html"), but the connection just times out.

    I also tried to set deviceside = true, as written here: http://digitalsonata.blogspot.com/2009/04/blackberry-connection-tip.html, but that no longer works.

    I am currently having this run on a device with an OS to v4.5.  It works fine on the device Simulator, but it fails as described when it is deployed on a real device.

    All ideas of code examples on reading my site would be appreciated.  Thank you.

    « ; deviceside = true' by itself, without parameters APN or WAP specific carrier, is not going to work on 90% of carriers.

    See the sticky thread on this forum of Peter Strange for more information.

    Also see this article:

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is...

  • Other Application CLDC &amp; Eclipse Plugin Entry Point.

    I'm create a listener in the background to update a GUI application and using Eclipse & plugin.  I don't see how I can change the type of request to be acting CLDC application Point of entry using Eclipse.  Does anyone know how to do?  I can create 2 projects of blackberry, but trouble doing that Im having a reference others even when I select project references.

    Thanks in advance.

    To change this right-click on the project and select Properties.  Then click on the BlackBerry project properties and select the Application tab.

    Note that the alternative entry point option is not available if the project contains all the java source files added to it.

  • Flash Builder Eclipse Plugin Burrito

    When can we expect an Eclipse plugin for version beta of Burrito? What is this running on 64bits Helios?

    Hello

    Burrito preview works as a plug-in in Helios eclipse. Burrito should eclipse of 32-bit and cocoa (no carbon) on OS X.

    More details in the Installation section of the Burrito release notes here:

    http://labs.Adobe.com/wiki/index.php/Flash_Builder_Burrito#Install_your_software

    -Chris

Maybe you are looking for

  • What is the menu button of Firefox, where is it and what happens if I don't?

    I'm still not able to understand how to get to the general page of Firefox. I have a menu bar, but nothing there helps me. One of the responses to my previous ones (which I am still trying to complete) talked about the Firefox menu button, but I can'

  • S50 satellite - A - 10 H - new battery

    Hello! My Toshiba Satellite S50 battery - A - 10 H becomes really low and Toshiba Health Monitor also told me the same thing and I would like to replace it. Now my question is: what battery is correct for this model? I did not find the details on the

  • Satellite A200 battery charge problem

    Hello, I have a Satellite A200 - 23 k in June3 days ago the battery stops loading at 65%I leave the battery to 0 (to recalibrate it) but surprise, this time stops at 45%I put the battery on a second laptop (same model) but it works the same way Any h

  • Can't log in as administrator! Impossible to change anything!

    Okey, so I changed my standard account... it had been initially on administrator. I did this because whenever I did something he asked permission first... very annoying. But now, because my other user is admin, I can't do anything! My other user is a

  • Path of file by default when you open explores in Vista

    When I right click on 'Start' and choose 'Explorer' it always opens "Menu of C:\Users\Name\AppData\Roaming\Microsoft\Windows\Start", I would like to change to another set of folders and files. Where should I go to set the new path?