Duplicate definition

Hello. I get the following message appears when I try to compile and run my project on the BB Simulator.

Packaging Project ProjectName failed

Error! : duplicate definition for 'org.kxml2.io.KXmlParser', in: org.kxml2.io.KXmlParser

Now, it makes sense because I have references to kxml2 - ksoap2-j2me-core-prev - 2.1.2.jar and 2.3.9.jar, which contain the org.kxml2.io.

My question is simple. How can I get rid of one?

The two pots contain required files I am looking to just remove the org.kxml2.io of one or the other.

Thanks in advance.

Problem solved. Just find the .jar to your hard drive file and rename it so that the extension is .zip. Then from there, you can go and delete all you want.

Be sure to rename it to .jar.

Tags: BlackBerry Developers

Similar Questions

  • Error! : duplicate definition for 'org.kxml2.io.KXmlParser '.

    Hi all

    Below I have attached my code using KSoap2.

    The following error message get up when I run the project.

    ".. \lib\kxml2-min-2.3.0.jar(org/kxml2/IO/KXmlParser.class): error! ': duplicate definition for 'org.kxml2.io.KXmlParser', in: org.kxml2.io.KXmlParser.

    I looked in the forums of BB, but I can't solve this problem...

    Please tell me hoe to solve this problem

    package mypackage;
    
    import java.io.InputStream;
    import java.io.OutputStream;
    
    import javax.microedition.io.Connector;
    import javax.microedition.io.HttpConnection;
    
    import org.ksoap2.SoapEnvelope;
    import org.ksoap2.serialization.SoapObject;
    import org.ksoap2.serialization.SoapSerializationEnvelope;
    import org.kxml2.io.KXmlParser;
    import org.xmlpull.v1.XmlPullParser;
    
    import net.rim.device.api.compress.GZIPOutputStream;
    import net.rim.device.api.system.CoverageInfo;
    import net.rim.device.api.system.WLANInfo;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.MainScreen;
    
    /**
     * A class extending the MainScreen class, which provides default standard
     * behavior for BlackBerry GUI applications.
     */
    public final class MyScreen extends MainScreen
    {
        /**
         * Creates a new MyScreen object
         */
        public MyScreen()
        {
            // Set the displayed title of the screen
            setTitle("MyTitle");
            ButtonField bf = new ButtonField();
            add(bf);
            BenoListener benoListener = new BenoListener();
            bf.setChangeListener(benoListener);
        }
    
        public class BenoListener implements FieldChangeListener {
            public void fieldChanged(Field field, int context) {
                try {
                    String serviceNamespace = "http://www.google.com/Services/google/";
                    String soapAction = "http://www.google.com/Services/google/Login";
                    String methodName= "Login";
                    String result = "";
                    String begin = ""
                            + "http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"
                            + "";
                    String end = "" + "";
                    String soapBody =begin;
                    soapBody += "http://www.google.com/Services/google\">";
                    soapBody += "";
                    soapBody += "[email protected]";
                    soapBody += "";
                    soapBody += "";
                    soapBody += "12345678";
                    soapBody += "";
                    soapBody += "";
                    soapBody += end;
                    SoapObject rpc = new SoapObject(serviceNamespace, methodName);
                    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
                    envelope.encodingStyle = SoapSerializationEnvelope.ENC;
                    HttpConnection connection = (HttpConnection) Connector.open("https://services.google.com:8443/axis2/services/api/V1.0/GoogleServices"+ getConnectionParameter(),Connector.READ_WRITE);
                    connection.setRequestProperty("SOAPAction", soapAction);
                    connection.setRequestProperty("Content-Type", "application/x-gzip");
                    connection.setRequestProperty("Content-Encoding", "gzip");
                    connection.setRequestProperty("Accept-Encoding", "gzip");
                    connection.setRequestProperty("Content-Length","" + soapBody.getBytes().length);
                    connection.setRequestProperty("User-Agent", "kSOAP/2.0");
                    connection.setRequestMethod(HttpConnection.POST);
                    OutputStream os = connection.openOutputStream();
    
                    zipRequest(os, soapBody);
    //              os.write(soapBody.getBytes(), 0, soapBody.getBytes().length);
    //              os.close();
                    soapBody = null;
                    InputStream is = connection.openInputStream();
                    XmlPullParser xp = new KXmlParser();
                    xp.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, true);
                    xp.setInput (is, null);
                    envelope.parse(xp);
                    result = (envelope.getResponse()).toString();
                    Dialog.alert("Result---"+result);
                } catch (Exception ex) {
                }
    
            }
    
            private String getConnectionParameter() {
                String connectionParameter = "";
                if (WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED) {
                    connectionParameter = ";interface=wifi";
                } else {
                    int coverageStatus = CoverageInfo.getCoverageStatus();
                    if ((coverageStatus & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS) {
                        connectionParameter = ";deviceside=false";
                    } else if ((coverageStatus & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT) {
                        connectionParameter = ";deviceside=true";
                    }
                }
                return connectionParameter;
            }
    
                public void zipRequest(OutputStream io, String data) throws Exception{
                    try{
                        GZIPOutputStream gz = new GZIPOutputStream(io);
                        byte[] bytes = data.getBytes("UTF-8");
                        gz.write(bytes, 0, bytes.length);
                        gz.close();
                    }
                    catch(Exception ex){
                    }
            }
    
    }
    }
    

    I solved this problem of "Preverify" jar

  • Error! : duplicate definition for 'org.kobjects.base64.Base64', in: org.kobjects.base64.Base64

    Hi, using ksoap 2 jar, I get following error. Someone can he figure out?

    "Error!: duplicate definition for 'org.kobjects.base64.Base64', in: org.kobjects.base64.Base64 '...

    Maybe you added two libraries with this class? for example ksoap2 and kxml?

  • Error! : duplicate definition

    Hello to everyone here, I got an erroe when I want to start my project in the Simulator, it uses a lib I created and it was always a mistake! : definition in the jar, which I use to duplicate the persistable and it is used in the project 2. All information and links will be useful, thank you advance

    do not use the persistables classes in libraries

  • error "duplicate definition of the function.

    How can I change the code below to avoid an error?

    It gives me an error "duplicate function definition. Of course, I learn fast enough and little error.

    thumpy.addEventListerner (MouseEvent.CLICK, onClick);

    function onClick(evt:MouseEvent):void {}

    var url: String = " " http://www.thumpersf.com '; '.

    var req:URLRequest = new URLRequest (url);

    navigateToURL (req, "_blank");

    }

    You are right about the two lines is necessary.  One involves the transfer of the event listener with the identification of the function of Manager in it:

    humpy.addEventListener (MouseEvent.CLICK, onClick);

    and the other is the actual event handler function

    function onClick (...

    The duplication error will arise when you have two functions sharing the same name...

    function onClick (...

    function onClick (...

    Unfortunately I do not see the history of the display when writing, so I don't know if it is possible that some other functions were duplicated, rather than that which is currently focused on until now.

    To answer your original question and rule the entrance/exit or not that code is the problem, change the code as follows:

    thumpy.addEventListener (MouseEvent.CLICK, clickThumpy);

    function clickThumpy(evt:MouseEvent):void {}

    var url: String = ""http://www.thumpersf.com "; "

    var req:URLRequest = new URLRequest (url);

    navigateToURL (req, "_blank");

    }

    (Don't sweat short-circuit the code...) If you're new to AS3, it is better to learn it realizing that there are three distinct parts to bond a URL did you watch... you can drive with one hand after completing some experiments using two)

  • Duplicate definition of variables.

    I am doing this wrong.

    If

    {

    var myEvent

    dispatchEvent (myEvent)

    }

    on the other

    {

    var myEvent

    dispatchEvent (myEvent)

    }

    I get warnings in double variable definition...

    the variable is internal to the function

    It is in an if/else if it is itself should not be mixing up.

    Should I be rename the internal temp variable to myEvent1, myEvent2... then send it... like as in the if/else

    or by creating another function, calling the function of distribution from there?

    Why not move the myEvent "var" on top of the fi (taking these two if and else blocks).

  • Duplicate definition - error during the generation of project

    Hi eveybody,.

    I met a problem when I am developing. I copy the source from a computer code and put it in the new computer, build a new workspace and a new project, and then compile the code.

    It can pass all the verification code, but it built like this:

    Sorry to answer that for myself...

    I think it's because I add a few files such as *.rapc and * .debug. that is causing the problem.

    I remove and build well.

  • Duplicate function definition error

    Hi all!

    Among the more boring for errors is the error "duplicate definition of the function. I appreciate that Flash does not want to see the same function twice...

    ... But what of the same function used in two different sections (labels) to a site? I have two different slideshows in two different sections of my site, and I need the same function shouted for everyone.

    The function is function nextImage (): void

    If I remove one, this slideshow does not work (still fixed on frame 1 of the slideshow)... If I keep it in, nothing works!

    Ideas for a workaround? I wanted to use the same script for the two shows, but forget it! So, I found another script to another type of slideshow. I thought that I would be safe taking this approach. Apparently not.

    Thank you!!!

    I don't know if someone else will have to offer, but if you have a problem of double function for two slide show different designs, rename this function in one of them.

  • GROUP BY date range to identify duplicates

    Good afternoon

    Your help with the following would be appreciated (examples of data below)

    I've highlighted what I mark as returned as duplicates

    example.jpg

    Duplicate definition:

    the same account_num

    maximum 20 days apart tran_effective_date

    tran_processed_date maximum 10 days apart

    the same tran_amount

    However, I do not want to return a duplicate if they have both a tran_priced_date filled.

    So in light of the foregoing

    N100283 would not qualify, even if the tran_effective_date and the tran_processed_date are 20 and 20 days respectively, we have a date tran_priced populated, but not the other

    N101640 & N102395 is not eligible because the two did not have the full trab_priced_date

    N108876 is not eligible as duplicate as the tran_effective_dates are more than 20 days apart.

    Your help would be much appreciated.

    BEGIN
      EXECUTE IMMEDIATE 'DROP TABLE samp_data';
    EXCEPTION
      WHEN OTHERS THEN
        IF SQLCODE = -942 THEN
          DBMS_OUTPUT.put_line('');
        ELSE
          RAISE;
        END IF;
    END;
    /
    
    
    CREATE TABLE samp_data (
      ACCOUNT_NUM             VARCHAR2(17),
      TRAN_ID                 NUMBER(10),
      TRAN_TYPE               VARCHAR2(50),
      TRAN_EFFECTIVE_DATE     TIMESTAMP(6),
      TRAN_PROCESSED_DATE     TIMESTAMP(6),
      TRAN_PRICED_DATE        TIMESTAMP(6),
      TRAN_AMOUNT             NUMBER(13,2)
      );
    /
    
    
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N100283',140119178,'Regular With',to_timestamp('01-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('22-MAY-15 07.00.34.235000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('21-MAY-15 03.26.18.954000000 AM','DD-MON-RR HH.MI.SS.FF AM'),200);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N100283',140158525,'Regular With',to_timestamp('13-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('26-MAY-15 08.39.14.090000000 AM','DD-MON-RR HH.MI.SS.FF AM'),null,200);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N100284',140118826,'Regular With',to_timestamp('03-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('22-MAY-15 07.00.19.072000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('20-MAY-15 03.25.05.438000000 AM','DD-MON-RR HH.MI.SS.FF AM'),450);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N100284',140158120,'Regular With',to_timestamp('06-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('26-MAY-15 08.38.42.064000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('21-MAY-15 03.26.18.954000000 AM','DD-MON-RR HH.MI.SS.FF AM'),450);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N101640',140118957,'Regular With',to_timestamp('18-MAY-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('22-MAY-15 07.00.25.015000000 AM','DD-MON-RR HH.MI.SS.FF AM'),null,120);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N101640',140158278,'Regular With',to_timestamp('22-MAY-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('26-MAY-15 08.38.56.228000000 AM','DD-MON-RR HH.MI.SS.FF AM'),null,130);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N102395',140118842,'Regular With',to_timestamp('03-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('22-MAY-15 07.00.19.665000000 AM','DD-MON-RR HH.MI.SS.FF AM'),null,250);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N102395',140158235,'Regular With',to_timestamp('03-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('26-MAY-15 08.38.53.093000000 AM','DD-MON-RR HH.MI.SS.FF AM'),null,250);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N102396',140118823,'Regular With',to_timestamp('09-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('22-MAY-15 07.00.18.931000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('19-MAY-15 03.26.18.954000000 AM','DD-MON-RR HH.MI.SS.FF AM'),750);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N102396',140158099,'Regular With',to_timestamp('16-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('26-MAY-15 08.38.39.443000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('21-MAY-15 03.26.18.954000000 AM','DD-MON-RR HH.MI.SS.FF AM'),750);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N102827',140118850,'Regular With',to_timestamp('03-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('22-MAY-15 07.00.20.045000000 AM','DD-MON-RR HH.MI.SS.FF AM'),null,157.84);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N102827',140158118,'Regular With',to_timestamp('03-JUN-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('26-MAY-15 08.38.41.861000000 AM','DD-MON-RR HH.MI.SS.FF AM'),null,157.84);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N108876',139840720,'Regular With',to_timestamp('01-MAY-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('11-MAY-15 08.35.34.646000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('20-MAY-15 03.25.05.438000000 AM','DD-MON-RR HH.MI.SS.FF AM'),1000);
    Insert into samp_data (ACCOUNT_NUM,TRAN_ID,TRAN_TYPE,TRAN_EFFECTIVE_DATE,TRAN_PROCESSED_DATE,TRAN_PRICED_DATE,TRAN_AMOUNT) values ('N108876',139889880,'Regular With',to_timestamp('22-MAY-15 12.00.00.000000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('12-MAY-15 08.49.29.080000000 AM','DD-MON-RR HH.MI.SS.FF AM'),to_timestamp('21-MAY-15 03.26.18.954000000 AM','DD-MON-RR HH.MI.SS.FF AM'),1000);
    /
    
    select * from samp_data
    ORDER BY account_num, tran_effective_date, tran_processed_date;
    

    Hello

    Here's one way:

    SELECT *.

    OF samp_data m

    WHEN THERE IS)

    SELECT 1

    OF samp_data o

    WHERE o.account_num = m.account_num

    AND o.tran_effective_date BETWEEN m.tran_effective_date - INTERVAL '20' DAY

    AND m.tran_effective_date + INTERVAL '20' DAY

    AND o.tran_processed_date BETWEEN m.tran_processed_date - INTERVAL '10' DAY

    AND m.tran_processed_date + INTERVAL '10' DAY

    AND o.tran_priced_date IS NOT NULL

    AND o.tran_id <> m.tran_id

    )

    AND tran_priced_date IS NOT NULL

    ;

    I guess that tran_id is unique.

    The EXISTS subquery returns TRUE if there is at least 1 other similar line to the line to the study.  The condition

    o.tran_id <> m.tran_id

    guarantee that this will be another line, not the same line.

  • Strengthening of the error with Eclipse project

    I'm running into a strange error build a project with Eclipse.

    I have Eclipse version 3.6.2 with BlackBerry Java plug-in 1.3.0.201102031007 - 19 and two SDKs (6.0.0 and 5.0.0.36).

    I am trying to build a library of references this project application project.  Here's the error I'm getting to the stage of packaging:

    Packaging project myApplication_BB
    C:\Apps\Eclipse\plugins\net.rim.ejde.componentpack6.0.0_6.0.0.30\components\bin\rapc.exe -convertpng -quiet codename=deliverables\Standard\6.0.0\myApplication_BB deliverables\Standard\6.0.0\myApplication_BB.rapc -sourceroot=C:\Users\GA\workspace\myApplication_BB\src;C:\Users\GA\workspace\pointTrace\src;C:\Users\GA\workspace\myApplication_BB\res -import=C:\Apps\Eclipse\plugins\net.rim.ejde.componentpack6.0.0_6.0.0.30\components\lib\net_rim_api.jar;C:\Users\GA\workspace\Codename1_BB\deliverables\Standard\5.0.0\Codename1_BB.jar;C:\Apps\Eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.36\components\lib\net_rim_api.jar C:\Users\GA\workspace\myApplication_BB\bin
    C:\Apps\Eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.36\components\lib\net_rim_api.jar(net_rim_amms.cod): Error!: Duplicate definition for 'net.rim.device.internal.amms.AMMSMain' found in: C:\Apps\Eclipse\plugins\net.rim.ejde.componentpack6.0.0_6.0.0.30\components\lib\net_rim_api.jar(net_rim_amms.cod)
    Packaging project myApplication_BB failed (took 7.369 seconds)
    

    When I searched the Web for this error I found this link: http://docs.blackberry.com/en/developers/deliverables/23650/eJDE_1.3_SDK_7.0_Known_Issues_1526151_11...

    However, he talks about debugging, and I get not even package the project.

    It seems that he tries to import into a Pack 6.0 and 5.0.  I specified my TERM as 5.0 when creating projects.  Is there a way to force it to use only 5.0?  I could not find anywhere in the project properties.

    Thank you for any information.

    Hello

    check if only they designate same JRE, if the library project and the client of the project when they use different library, you are bound to this kind of questions, change them to the same operating system and check

    Concerning

    Rakesh Shankar.P

  • Packs of ENYO-App Playbook, but NOT for phones?

    Hello

    my app (based enyojs.com) did the packaging without problem with the last Tablet webworks SDK. If I try to package for smartphones (OS7) it will not be package. I need to package it to phones add support for searching for contacts (which is not supported for the Tablet yet).

    What could be my problem?

    Thank you

    LinuxQ

    Bbwp output:

    [INFO] Parsing of the command line options
    [INFO] Bbwp.properties analysis
    [INFO] Validation of archive application
    [INFO] The analysis of config.xml
    [INFO] Validation of config.xml
    [INFO] Validate the version of the application
    [INFO] Validation of the element of
    [INFO] Validation of the element of
    [INFO] The application of filling source
    [INFO] Compilation of application BlackBerry WebWorks
    Note: Some input files use or replace an obsolete API.
    Note: Recompile with - Xlint: deprecation for more details.
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\AppExtension$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\AppExtension$AppNamespaceHandler.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\AppExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\AppNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\event\AppEventNamespace$OnAppEventFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\event\AppEventNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\ExitFunction$ExitRunner.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\ExitFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\RemoveBannerIndicatorFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\RequestBackgroundFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\RequestForegroundFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\SetHomeScreenIconFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\SetHomeScreenNameFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\app\ShowBannerIndicatorFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\push\PushDaemon$CommandListener.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\push\PushDaemon$DaemonStore.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\push\PushDaemon$SimChangeData.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\push\PushDaemon$StatusChangeData.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\push\PushDaemon.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\push\PushData.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\push\PushPersistentStore.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\settings\SettingsManager.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\settings\SettingsStoreFactory.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\FeaturesHash.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\ID.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\JSON4JNumber.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\JSON4JPBackReader.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\JSON4JStringReader.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\JSON4JStringWriter.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\NumberUtil.class

    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\Parser.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\Serializer.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\SerializerVerbose.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\Token.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\internal\Tokenizer.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSON.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONArray.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONArtifact.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONException.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONObject$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONObject$Null.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONString.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONStringer.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\json4j\JSONWriter.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\JSUtilities$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\JSUtilities.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\PatternMatchingUtilities.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\StringTokenizer.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\StringUtilities.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\common\util\URLDecoder.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ApplicationEventHandler.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ApplicationRegistry.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\Blob.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\BlockingScriptableFunction$BlockingWatchdog.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\BlockingScriptableFunction$UnblockRunner.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\BlockingScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\EventService.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\FunctionSignature$FunctionParam.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\FunctionSignature.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\IJSExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\JSExtensionRequest.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\JSExtensionResponse.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\JSExtensionReturnValue.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ObjectBase.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ScriptableFunctionBase.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ScriptableFunctionWrapper.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ScriptableObjectBase.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ScriptableWrapper.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\ScriptField.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\CallbackDispatcherEvent.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\DispatchableEvent.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\Dispatcher$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\Dispatcher$SingletonHolder.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\Dispatcher.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\DispatcherImpl$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\DispatcherImpl$SingletonHolder.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\DispatcherImpl.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\GenericDispatcherEvent.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\InterruptibleThread$Interruption.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\threading\InterruptibleThread.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\WidgetBlob$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\WidgetBlob$GetBytesFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\WidgetBlob$SliceFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\WidgetBlob.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\core\WidgetProperties.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\find\ExpressionTester.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\find\filterExpression\FilterExpressionConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\find\filterExpression\FilterExpressionObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\find\FindExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\find\FindNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\find\TestableScriptableObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\GetTransportListFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\IdentityExtension$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\IdentityExtension$IdentityNamespaceHandler.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\IdentityExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\IdentityFunctions$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\IdentityFunctions.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\IdentityNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\phone\GetLineIdsFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\phone\GetLineLabelFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\phone\GetLineNumberFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\phone\GetLineTypeFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\phone\PhoneFunctionBase.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\phone\PhoneNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\service\ServiceObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\identity\transport\TransportObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\addressBookArguments\AddressBookArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\addressBookArguments\AddressBookArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\browserArguments\BrowserArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\browserArguments\BrowserArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\calendarArguments\CalendarArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\calendarArguments\CalendarArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\cameraArguments\CameraArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\cameraArguments\CameraArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\InvokeExtension$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\InvokeExtension$InvokeFeaturesHandler.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\InvokeExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\InvokeFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\InvokeNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\javaArguments\JavaArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\javaArguments\JavaArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\mapsArguments\MapsArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\mapsArguments\MapsArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\memoArguments\MemoArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\memoArguments\MemoArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\messageArguments\MessageArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\messageArguments\MessageArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\phoneArguments\PhoneArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\phoneArguments\PhoneArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\searchArguments\SearchArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\searchArguments\SearchArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\taskArguments\TaskArgumentsConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\invoke\taskArguments\TaskArgumentsObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\message\FindFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\message\MessageConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\message\MessageObject$MessageRemoveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\message\MessageObject$MessageSaveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\message\MessageObject$MessageSendScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\message\MessageObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\message\MessageUtility.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\MessagingExtension$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\MessagingExtension$MessageFeaturesHandler.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\MessagingExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\messaging\MessagingNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\address\AddressConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\address\AddressObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\appointment\AppointmentConstructor$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\appointment\AppointmentConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\appointment\AppointmentObject$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\appointment\AppointmentObject$AppointmentSaveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\appointment\AppointmentObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\attendee\AttendeeConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\attendee\AttendeeObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\category\AddCategoryFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\category\CategoryNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\category\DeleteCategoryFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\category\GetCategoriesFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\contact\ContactConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\contact\ContactFindScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\contact\ContactObject$ContactRemoveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\contact\ContactObject$ContactSaveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\contact\ContactObject$ContactSetPictureScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\contact\ContactObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\memo\MemoConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\memo\MemoFindScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\memo\MemoObject$MemoRemoveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\memo\MemoObject$MemoSaveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\memo\MemoObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\PIMExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\PIMUtils.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\recurrence\RecurrenceConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\recurrence\RecurrenceObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\reminder\ReminderConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\reminder\ReminderObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\task\TaskConstructor.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\task\TaskFindScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\task\TaskObject$TaskRemoveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\task\TaskObject$TaskSaveScriptableFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\pim\task\TaskObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\color\BaseColorChooser.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\color\ColorPickerDialog.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\color\ColorPickerPopup.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\color\ColorPreviewField.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\color\TintChooser.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\ColorPickerAsyncFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\CustomAskAsyncFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\CustomAskFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\datetime\DateTimeDialog$HTML5Date.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\datetime\DateTimeDialog$HTML5DateTimeGlobal.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\datetime\DateTimeDialog$HTML5DateTimeLocal.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\datetime\DateTimeDialog$HTML5Month.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\datetime\DateTimeDialog$HTML5Time.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\datetime\DateTimeDialog.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\datetime\Html5DateTimeObject.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\DateTimeAsyncFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\DialogExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\DialogNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\DialogRunnableFactory$DialogAsyncRunnable.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\DialogRunnableFactory$DialogRunnable.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\DialogRunnableFactory.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\DialogRunner.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\IWebWorksDialog.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\select\GPATools.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\select\SelectDialog$ListItem.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\select\SelectDialog$SelectListField.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\select\SelectDialog.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\SelectAsyncFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\StandardAskAsyncFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\ui\dialog\StandardAskFunction.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\auth\AuthenticationScreen.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\auth\Authenticator$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\auth\Authenticator.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\auth\Credential.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\auth\CredentialBank.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\autogen\WidgetConfigAutoGen.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\BrowserFieldCustomErrorHandler.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\BrowserFieldScreen$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\BrowserFieldScreen.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\HTTPResponseStatus.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\navigationcontroller\NavigationController.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\navigationcontroller\NavigationExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\navigationcontroller\NavigationUiDispatcherEvent.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\NavigationNamespace$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\NavigationNamespace$2.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\NavigationNamespace$3.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\NavigationNamespace$4.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\NavigationNamespace$NavigationData.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\NavigationNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\WidgetBrowserFieldListener$ProxyScriptEngine.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\WidgetBrowserFieldListener.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\WidgetFieldManager.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\bf\WidgetRequestController.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\ByteVectorWrapper.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\CacheItem.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\CacheManager.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\ScriptableCacheItem.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheExtension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheNamespace$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheNamespace$ClearAll.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheNamespace$ClearCache.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheNamespace$GetCachesInformation.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheNamespace$GetCurrentSize.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheNamespace$HasCache.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\caching\WidgetCacheNamespace.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\device\DeviceInfo.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\exception\MediaHandledException.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\html5\GearsHTML5Extension.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\impl\WidgetConfigImpl.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\impl\WidgetError.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\impl\WidgetException.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\listener\HardwareKeyListener$StoredEvent.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\listener\HardwareKeyListener.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\AnimatedGIFField$AnimatorThread$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\AnimatedGIFField$AnimatorThread.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\AnimatedGIFField.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\LoadingScreen.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\PageManager$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\PageManager$2.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\PageManager.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\loadingScreen\TransitionConstants.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\MemoryMaid.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\policy\WidgetPolicy.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\policy\WidgetPolicyFactory.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\policy\WidgetWebFolderAccess.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\settings\SettingsStore.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\settings\SettingsStoreFactoryImpl.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\util\WidgetUtil.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\Widget$1.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\Widget.class
    Classfile analysis: C:\DOKUME~1\Marcel\LOKALE~1\Temp\rapc_10288be3.dir\blackberry\web\widget313da2ad87dc1a5e9f58039af247485package\WidgetScreen.class
    Reading resources: META-INF/JARKEY. SF
    Reading resources: META-INF/JARKEY. RSA
    Reading resources: META-INF/LICENSE
    Reading resources: META-INF/LICENSE.txt
    Reading resources: META-INF/NOTICE
    Reading resources: META-INF/NOTICE.txt
    Classfile analysis: com/palm/novacom/INovacomController.class
    Classfile analysis: com/palm/novacom/INovacomDevice.class
    Classfile analysis: com/palm/novacom/INovacomStream.class
    Classfile analysis: com/palm/novacom/NovaDeviceInfo.class
    Classfile analysis: com/palm/novacom/Novacom$DeviceState.class
    Classfile analysis: com/palm/novacom/Novacom$DiskAreas.class
    Classfile analysis: com/palm/novacom/Novacom.class
    Classfile analysis: com/palm/novacom/NovacomException.class
    Classfile analysis: com/palm/novacom/internal/DesktopInfo.class
    Classfile analysis: com/palm/novacom/internal/DirectConnection.class
    Classfile analysis: com/palm/novacom/internal/NovacomBaseStream.class
    Classfile analysis: com/palm/novacom/internal/NovacomController.class
    Classfile analysis: com/palm/novacom/internal/NovacomDevice.class
    Classfile analysis: com/palm/novacom/internal/NovacomDeviceList.class
    Classfile analysis: com/palm/novacom/internal/NovacomSocketStream.class
    Classfile analysis: com/palm/novacom/internal/OOBPacket.class
    Classfile analysis: com/palm/novacom/internal/PacketHeader.class
    Classfile analysis: com/palm/novacom/internal/PacketReader.class
    Classfile analysis: com/palm/novacom/internal/PacketWriter.class
    Classfile analysis: com/palm/webos/connect/DeviceConnection$1.class
    $1 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$10.class
    com.palm.webos.connect.DeviceConnection$ 10: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$11.class
    $11 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$12.class
    com.palm.webos.connect.DeviceConnection$ 12: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$13.class
    com.palm.webos.connect.DeviceConnection$ 13: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$14.class
    com.palm.webos.connect.DeviceConnection$ 14: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$2.class
    com.palm.webos.connect.DeviceConnection$ 2: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$3.class
    $3 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$4.class
    $4 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$5.class
    $5 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$6.class
    $6 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$7.class
    com.palm.webos.connect.DeviceConnection$ 7: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$8.class
    $8 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection$9.class
    $9 com.palm.webos.connect.DeviceConnection: WARNING! : duplicate method differs only by the return type: run
    Classfile analysis: com/palm/webos/connect/DeviceConnection.class
    Classfile analysis: com/palm/webos/connect/JSConnectStream$1.class
    Classfile analysis: com/palm/webos/connect/JSConnectStream$AsyncExecutionDelegate.class
    Classfile analysis: com/palm/webos/connect/JSConnectStream.class
    Classfile analysis: com/palm/webos/connect/JSDebuggerStream$1.class
    Classfile analysis: com/palm/webos/connect/JSDebuggerStream.class
    Classfile analysis: com/palm/webos/connect/JSNovacomRunStream$1.class
    Classfile analysis: com/palm/webos/connect/JSNovacomRunStream.class
    Classfile analysis: com/palm/webos/dndfileupload/DNDApplet$1.class
    Classfile analysis: com/palm/webos/dndfileupload/DNDApplet$2$1.class
    Classfile analysis: com/palm/webos/dndfileupload/DNDApplet$2$2.class
    Classfile analysis: com/palm/webos/dndfileupload/DNDApplet$2.class
    Classfile analysis: com/palm/webos/dndfileupload/DNDApplet.class
    Classfile analysis: com/palm/webos/installer/Installer.class
    Classfile analysis: com/palm/webos/installer/InstallerException.class
    Classfile analysis: com/palm/webos/launcher/Launcher.class
    Classfile analysis: com/palm/webos/launcher/LauncherException.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$1.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$2.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$3.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$4.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$5.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$6.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$7.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil$AppManagerException.class
    Classfile analysis: com/palm/webos/util/AppManagerUtil.class
    Classfile analysis: com/palm/webos/util/JsonUtil.class
    Classfile analysis: com/palm/webos/util/Logging.class
    Classfile analysis: com/palm/webos/util/LunaSendCommand$1.class
    Classfile analysis: com/palm/webos/util/LunaSendCommand$LunaSendException.class
    Classfile analysis: com/palm/webos/util/LunaSendCommand$LunaSendResponseHandler.class
    Classfile analysis: com/palm/webos/util/LunaSendCommand.class
    Classfile analysis: com/palm/webos/util/ResourceLoader.class
    Classfile analysis: com/palm/webos/util/StringUtil.class
    Classfile analysis: com/palm/webos/util/novacom/Logging.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomCommand$1.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomCommand$NovacomCommandException.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomCommand$NovacomStreamMonitor.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomCommand.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomPutCommand.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomUtil$1.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomUtil$NovacomNotRespondingException.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomUtil$NovacomUtilException.class
    Classfile analysis: com/palm/webos/util/novacom/NovacomUtil.class
    Classfile analysis: org/json/JSONArray.class
    Classfile analysis: org/json/JSONException.class
    Classfile analysis: org/json/JSONObject$1.class
    Classfile analysis: org/json/JSONObject$Null.class
    Classfile analysis: org/json/JSONObject.class
    Classfile analysis: org/json/JSONString.class
    Classfile analysis: org/json/JSONTokener.class
    Reading resources: META-INF/JARKEY. SF
    Reading resources: META-INF/JARKEY. RSA
    Reading resources: META-INF/LICENSE
    Reading resources: META-INF/LICENSE.txt
    Reading resources: META-INF/NOTICE
    Reading resources: META-INF/NOTICE.txt
    Classfile analysis: com/palm/novacom/INovacomController.class
    INovacomController.java: error! : duplicate definition for 'com.palm.novacom.INovacomController', in: com.palm.novacom.INovacomController
    [ERROR] CAP exception has occurred

    I was talking to someone on IRC with this problem.  It turned to be that JULIE has a jar buried inside her file includes and that was somehow causing problems with CAP to build the blackberry.

    He mentioned that the file has been enyo\framework\build\palm\services\bridge\webOSconnect_1_3.jar

    I suspect that is the problem for you as well.

  • Cannot create the file with EclipsePlugin .cod

    Hello

    I don't know how to describe it. I installed Eclipse plugin, JDE 4.5.0_4.5.0.16 and then updated to JDE plugin 4.7.0_4.7.0.46 (because I need the latest JDE packages so I can use ApplicationIndicator).

    But now when I'm trying to compile or create a .cod file (Eclipse: Project / Build active Configuration of BlackBerry) I get this error message:

    Executing rapc for the project BirthdayReminder at Mon Jun 08 09:28:07 CEST 2009.
    C:\Programme\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\bin\launcher.exe C:\Programme\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\bin\rapc.exe  -quiet import=..\..\..\..\Programme\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\lib\net_rim_api.jar;..\..\..\..\Programme\eclipse\plugins\net.rim.eide.componentpack4.7.0_4.7.0.46\components\lib\net_rim_api.jar codename=..\BirthdayReminder\BirthdayReminder ..\BirthdayReminder\BirthdayReminder.rapc -sourceroot="C:\Dokumente und Einstellungen\xxx\workspace\BirthdayReminder\src" "C:\Dokumente und Einstellungen\xxx\workspace\BirthdayReminder\bin"
    ..\..\..\..\Programme\eclipse\plugins\net.rim.eide.componentpack4.7.0_4.7.0.46\components\lib\net_rim_api.jar(net_rim_bb_addressbook.cod): Error!: Duplicate definition for 'net.rim.device.apps.api.addressbook.AddToAddressBookContext' found in: ..\..\..\..\Programme\eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16\components\lib\net_rim_api.jar(net_rim_bb_addressbook.cod)
    rapc failed for the project BirthdayReminder
    

    I don't know how to fix this... Why are there at - it a method definition duplated in the container of the RIM?

    I'm sorry - I solved it this problem for me.

    After update eclipse to 4.7.0.46, you need to uninstall the 4.5.0.16 package caraa. After a restart of eclipse, the new 4.7.0.46 package will be selected for the compilation and no error will be thrown.

  • How to locate a library?

    I have a library that provides a common code base for many applications. This library provides user interface components and similar related components contained text used by applications, so using the resources of regional settings.

    If this library must have access to its associated *.rrh/*.rrc files to compile correctly. So far everything works fine.

    But a library can provide default messages, it should not impose limits for the supported regional settings or the formulation for a specific application. Is what I want to do, to allow the application to "crush" the locale of a library resources. (Not really overwhelming, because it would be enough to separate the default value and the DSLs.)

    I tried to leave only the language by default and *.rrh *.rrc files in the library and put the *_en.rrc/*_de.rrc files in the application project. This leads to messages "*.rrh file not found". If I copy the file *.rrh in the application project, it leads to - not really surprising-"duplicate definition errors.

    I have found no information on how that is supposed to work, although in my opinion this concept doesn't seem so far-fetched.

    So, if someone could give some tips for me to solve this problem, I'd appreciate any help. :-)

    Thanks in advance.

    It is not possible in the way you think now.

    You can add optional methods for the class in question, like setMessage (newString), to customize channels.

  • Tomcat Server 6.0.35 on jdeveloper 11.1.1.5

    Hi Experts,

    I use the tomcat 6.0.35 server and Jdeveloper 11.1.1.5 trying to run my application on tomcat server, but his displays do not at all
    I tried all the things they showed on the blogs, but I don't know why it doesn't work?
    In my tomcat logs tomcat6 stderr is showing like this

    2012-05-22 09:47:03 common Daemon procrun initialized stderr
    May 22, 2012 09:47:04 org.apache.catalina.core.AprLifecycleListener init
    NEWS: APR charged base library Apache Tomcat Native 1.1.22.
    May 22, 2012 09:47:04 org.apache.catalina.core.AprLifecycleListener init
    INFO: Capacity APR: IPv6 [false], [true] sendfile, accept the [false] filters, random [true].
    May 22, 2012 09:47:05 org.apache.coyote.http11.Http11AprProtocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8080
    May 22, 2012 09:47:05 org.apache.coyote.ajp.AjpAprProtocol init
    INFO: Initializing Coyote AJP/1.3 on ajp-8009
    May 22, 2012 09:47:05 org.apache.catalina.startup.Catalina charge
    INFO: Initializing transformed into 1333 ms
    May 22, 2012 09:47:05 org.apache.catalina.users.MemoryUserDatabase open
    ATTENTION: Exception configuration digester to allow coding of java names in XML files. Only the names of IANA encoding will be supported.
    org.xml.sax.SAXNotRecognizedException: http://apache.org/xml/features/allow-java-encodings
    at oracle.xml.jaxp.JXSAXParserFactory.setFeature(JXSAXParserFactory.java:129)
    at org.apache.tomcat.util.digester.Digester.setFeature(Digester.java:556)
    at org.apache.catalina.users.MemoryUserDatabase.open(MemoryUserDatabase.java:391)
    at org.apache.catalina.users.MemoryUserDatabaseFactory.getObjectInstance(MemoryUserDatabaseFactory.java:103)
    at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory.java:140)
    at javax.naming.spi.NamingManager.getObjectInstance (unknown Source)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:793)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:140)
    at org.apache.naming.NamingContextBindingsEnumeration.nextElementInternal(NamingContextBindingsEnumeration.java:113)
    at org.apache.naming.NamingContextBindingsEnumeration.next(NamingContextBindingsEnumeration.java:71)
    at org.apache.catalina.mbeans.GlobalResourcesLifecycleListener.createMBeans (GlobalResourcesLifecycleListener.java:137)
    at org.apache.catalina.mbeans.GlobalResourcesLifecycleListener.createMBeans (GlobalResourcesLifecycleListener.java:109)
    at org.apache.catalina.mbeans.GlobalResourcesLifecycleListener.lifecycleEvent (GlobalResourcesLifecycleListener.java:81)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:142)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:747)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:595)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)
    at java.lang.reflect.Method.invoke (unknown Source)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)
    at org.apache.catalina.startup.Bootstrap.main (Bootstrap.java:414)
    May 22, 2012 09:47:05 org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    May 22, 2012 09:47:05 org.apache.catalina.core.StandardEngine start
    INFO: Starting the Servlet engine: Apache Tomcat/6.0.35
    May 22, 2012 09:47:05 org.apache.catalina.startup.HostConfig deployDescriptor
    NEWS: Deployment configuration descriptor manager.xml
    May 22, 2012 09:47:06 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:06 org.apache.catalina.startup.HostConfig deployWAR
    INFO: Web deployment application archive webapp1.war
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext start
    SEVERE: Error listenerStart
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext start
    SEVERE: Context [webapp1] startup failed due to previous errors
    May 22, 2012 09:47:07 org.apache.catalina.startup.HostConfig deployDirectory
    NEWS: Deployment of the directory docs web application
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:07 org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploy the web application ROOT directory
    May 22, 2012 09:47:08 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:08 org.apache.coyote.http11.Http11AprProtocol beginning
    INFO: From Coyote HTTP/1.1 on http-8080
    May 22, 2012 09:47:08 org.apache.coyote.ajp.AjpAprProtocol start
    INFO: Go to the Coyote AJP/1.3 ajp-8009
    May 22, 2012 09:47:08 org.apache.catalina.startup.Catalina start
    INFO: 2630 SP server startup

    __In folder of catalina, it's show as this__
    May 22, 2012 09:47:04 org.apache.catalina.core.AprLifecycleListener init
    NEWS: APR charged base library Apache Tomcat Native 1.1.22.
    May 22, 2012 09:47:04 org.apache.catalina.core.AprLifecycleListener init
    INFO: Capacity APR: IPv6 [false], [true] sendfile, accept the [false] filters, random [true].
    May 22, 2012 09:47:05 org.apache.coyote.http11.Http11AprProtocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8080
    May 22, 2012 09:47:05 org.apache.coyote.ajp.AjpAprProtocol init
    INFO: Initializing Coyote AJP/1.3 on ajp-8009
    May 22, 2012 09:47:05 org.apache.catalina.startup.Catalina charge
    INFO: Initializing transformed into 1333 ms
    May 22, 2012 09:47:05 org.apache.catalina.users.MemoryUserDatabase open
    ATTENTION: Exception configuration digester to allow coding of java names in XML files. Only the names of IANA encoding will be supported.
    org.xml.sax.SAXNotRecognizedException: http://apache.org/xml/features/allow-java-encodings
    at oracle.xml.jaxp.JXSAXParserFactory.setFeature(JXSAXParserFactory.java:129)
    at org.apache.tomcat.util.digester.Digester.setFeature(Digester.java:556)
    at org.apache.catalina.users.MemoryUserDatabase.open(MemoryUserDatabase.java:391)
    at org.apache.catalina.users.MemoryUserDatabaseFactory.getObjectInstance(MemoryUserDatabaseFactory.java:103)
    at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory.java:140)
    at javax.naming.spi.NamingManager.getObjectInstance (unknown Source)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:793)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:140)
    at org.apache.naming.NamingContextBindingsEnumeration.nextElementInternal(NamingContextBindingsEnumeration.java:113)
    at org.apache.naming.NamingContextBindingsEnumeration.next(NamingContextBindingsEnumeration.java:71)
    at org.apache.catalina.mbeans.GlobalResourcesLifecycleListener.createMBeans (GlobalResourcesLifecycleListener.java:137)
    at org.apache.catalina.mbeans.GlobalResourcesLifecycleListener.createMBeans (GlobalResourcesLifecycleListener.java:109)
    at org.apache.catalina.mbeans.GlobalResourcesLifecycleListener.lifecycleEvent (GlobalResourcesLifecycleListener.java:81)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:142)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:747)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:595)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)
    at java.lang.reflect.Method.invoke (unknown Source)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)
    at org.apache.catalina.startup.Bootstrap.main (Bootstrap.java:414)
    May 22, 2012 09:47:05 org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    May 22, 2012 09:47:05 org.apache.catalina.core.StandardEngine start
    INFO: Starting the Servlet engine: Apache Tomcat/6.0.35
    May 22, 2012 09:47:05 org.apache.catalina.startup.HostConfig deployDescriptor
    NEWS: Deployment configuration descriptor manager.xml
    May 22, 2012 09:47:06 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:06 org.apache.catalina.startup.HostConfig deployWAR
    INFO: Web deployment application archive webapp1.war
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext start
    SEVERE: Error listenerStart
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext start
    SEVERE: Context [webapp1] startup failed due to previous errors
    May 22, 2012 09:47:07 org.apache.catalina.startup.HostConfig deployDirectory
    NEWS: Deployment of the directory docs web application
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:07 org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploy the web application ROOT directory
    May 22, 2012 09:47:08 org.apache.catalina.core.StandardContext addApplicationListener
    INFO: The "com.sun.faces.config.ConfigureListener" listener is already configured for this context. Duplicate definition was ignored.
    May 22, 2012 09:47:08 org.apache.coyote.http11.Http11AprProtocol beginning
    INFO: From Coyote HTTP/1.1 on http-8080
    May 22, 2012 09:47:08 org.apache.coyote.ajp.AjpAprProtocol start
    INFO: Go to the Coyote AJP/1.3 ajp-8009
    May 22, 2012 09:47:08 org.apache.catalina.startup.Catalina start
    INFO: 2630 SP server startup

    * In the folder of the local host, it's show like that *.
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Error configuration application listener class oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
    java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1680)
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1526)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4149)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4705)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:799)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:779)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:601)
    at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:943)
    at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:778)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:504)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1317)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:324)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:142)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1065)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:840)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:463)
    at org.apache.catalina.core.StandardService.start(StandardService.java:525)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:754)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:595)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)
    at java.lang.reflect.Method.invoke (unknown Source)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)
    at org.apache.catalina.startup.Bootstrap.main (Bootstrap.java:414)
    May 22, 2012 09:47:07 org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Jumps installation application listeners due to previous errors


    I have a question if the Tomcat server running on 11.1.1.5 or not
    If not what version of jdeveloper and tomcat can I use and make it work properly


    Can someone help me?

    Thanks in advance
    David

    Don't forget, your URGENT request is to get a completely unsupported of job configuration.

    ADF 11.x is not supported on any version of Tomcat.

    John

  • Newbie question with multiple do drag and drop objects

    I am trying to build a drag and drop quiz where you have a list of countries and move the correct country in an empty space in a paragraph to fill properly the sentence (see attachment).
    I can get the first country to drag and drop correctly. But when I tried the second country in the list of code, I get the following error message:
    "definition of the double function of 1021.
    Here is my code:
    afghanistan_mc.addEventListener (MouseEvent.MOUSE_DOWN, startDragging);
    function startDragging(myevent:MouseEvent):void {}
    afghanistan_mc.startDrag ();
    }
    afghanistan_mc.addEventListener (MouseEvent.MOUSE_UP, stopDragging);
    function stopDragging(myevent:MouseEvent):void {}
    afghanistan_mc.stopDrag ();
    }
    burma_mc.addEventListener (MouseEvent.MOUSE_DOWN, startDragging);
    function startDragging(myevent:MouseEvent):void {}
    burma_mc.startDrag ();
    }
    burma_mc.addEventListener (MouseEvent.MOUSE_UP, stopDragging);
    function stopDragging(myevent:MouseEvent):void {}
    burma_mc.stopDrag ();
    }
    It seems that the problem is that you can't 'startDragging' and "stopDragging" defined in different functions. I saw something on the use of the target property of the MouseEvent object when you have multiple objects drag-and - drop, but I can't find how to do this job.
    I would be grateful any advice!

    You have functions duplicate definitions.  Either use the same function for the two MCs (startDragging and stopDragging) by putting two eventhandler in each function calls, so you have 2 each, or declare a separate name as startDragging and startDragging2, etc.

Maybe you are looking for