Recursion accessment

1.     Write an iterative and a recursive version of the Fibonacci series algorithm. You need to ensure the correctness of the both algorithms. Both algorithms should produce similar output if given a similar input.
a.     Measure the performance of the two algorithms by measuring the time for both algorithms to listing out 10, 20, 30, 40, 50, 60, 70 and 80 of Fibonacci numbers. The listing procedure could be done with a loop. For each test, repeat 3 times and get the average value.

Hi Anirudh,
I see that you've registered just a few days back.I've seen that you've been using a lot of non-words like 'u' instead of 'you' etc.Just try to avoid them.It is not accepted at the forums here since it's very annoying and irritating and leaves an impression about you being lazy.
Regards,
Swapnaja
P.S:Do not take me wrong.This is what I've seen here at sun-forums.Just thought I'd let you know.

Similar Messages

  • How to recursive check connections about some datasource ?

    sigh~~!!
    we got a system and do maintain jobs. but we found its connection object was not entired closed, so for a long term, connection pool would shutdown.
    we had review our jsp/java file to correct the connection close. but we still meet the same error!
    Since we get the connection object from the OC4J datasource, could we recursive access the each connection object in the pool and check whether the connection object was not closed, when shutting down the Application Server?

    Hi Jutamas..,
    In the item over view double Click the Material which is recursive in the Basic data tab page General data subtab will be there there you click that recursive.
    your problem will be solved.
    dont forget to reward it is helpful.
    regards.

  • Forward Declaration in Class Builder

    Hi All,
       In the Class Builder (SE24)when i create a new Class, There is an option of Forward declaration  in the Property Tab. In this, we can add Type Group Interface and Class. What is the Purpose of this forward declaration?
      The F1 help does not provide any help.
    Regards,
    Kapil.

    in addition to above replies, it can be used for classes and interfaces in that case Forward declaration is equivalent to
    CLASS <class_name> DEFINITION LOAD.
    interface <interface_name> load
    statements which are normally used in Program ( case for local classes )
    use of Load from SAP docu
    ... LOAD
    Effect
    The variant with the LOAD addition loads a global class class from the Class Library. This statement was needed before Release 6.20 if you wanted to access one of the static components of class from within a program, or to declare an event handler for class before class had been loaded automatically. From Release 6.20 onwards, the LOAD addition is only needed if the compilation of an ABAP program fails because it includes recursive accesses of a globa l class. In such cases, you may be able to make the program compilable by explicitly loading the class before recursion.
    Thanks,
    kranthi.

  • Regarding objects using load

    Why we use load keyword regarding objects and methods?

    Hi,
    The variant with the LOAD addition loads a global class class from the Class Library. This statement was needed before Release 6.20 if you wanted to access one of the static components of class from within a program, or to declare an event handler for class before class had been loaded automatically. From Release 6.20 onwards, the LOAD addition is only needed if the compilation of an ABAP program fails because it includes recursive accesses of a globa l class. In such cases, you may be able to make the program compilable by explicitly loading the class before recursion.
    Example
    In this example, the class c1 uses the class c2 and vice versa. This means that one of the classes must be made known before it is actually defined. The global class cl_gui_cfw is also loaded before one of its static attributes is used.
    CLASS c1 DEFINITION DEFERRED.
    CLASS c2 DEFINITION.
      PUBLIC SECTION.
        DATA c1ref TYPE REF TO c1.
    ENDCLASS.
    CLASS c1 DEFINITION.
      PUBLIC SECTION.
        DATA c2ref TYPE REF TO c2.
    ENDCLASS.
    CLASS cl_gui_cfw DEFINITION LOAD.
    DATA state LIKE cl_gui_cfw=>system_state.
    An example of using the DEFERRED PUBLIC addition would be a type group in which a reference type is declared with a reference to a global class, which itself contains components with references to this reference type. In this situation, the entire class cannot be loaded before the type group, since the types are not yet known. However, after the CLASS DEFINITION ... DEFERRED PUBLIC statement, the class name can be specified after REF TO without the class having been loaded previously.
    Regards,
    Renjith Michael.

  • ORA-00604: error occured at recursive SQL level 1 ORA-12705: Cannot access

    Oracle Database 10g Express Edition Release 10.2.0.1.0 on
    OS Linux Debian 3.1_r4_stable
    SQL> select userenv('LANGUAGE') from dual;
    USERENV('LANGUAGE')
    RUSSIAN_RUSSIA.AL32UTF8
    Client OS MS Vista Ultimate EN , region=RUSSIAN.RUSSIA
    Oracle Developer suite 10
    SQL-Developer
    Version 1.1.0.23.
    NLS_LANG=RUSSIAN_RUSSIA.CL8MSWIN1251
    Oracle Developer suite 10 is working properly but when
    i am attempting a connection between Oracle 10g XE and SQL-Developer.
    Need some help to resolve this error message....
    ORA-00604: error occured at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid enviroment specified

    Hi,
    You have to set NLS_LANG before connect to Oracle Database.
    $export NLS_LANG=.AL32UTF8

  • Access path difference between Primary Key and Unique Index

    Hi All,
    Is there any specific way the oracle optimizer treats Primary key and Unique index differently?
    Oracle Version
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> Sample test data for Normal Index
    SQL> create table t_test_tab(col1 number, col2 number, col3 varchar2(12));
    Table created.
    SQL> create sequence seq_t_test_tab start with 1 increment by 1 ;
    Sequence created.
    SQL>  insert into t_test_tab select seq_t_test_tab.nextval, round(dbms_random.value(1,999)) , 'B'||round(dbms_random.value(1,50))||'A' from dual connect by level < 100000;
    99999 rows created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_stats.gather_table_stats(USER_OWNER','T_TEST_TAB',cascade => true);
    PL/SQL procedure successfully completed.
    SQL> select col1 from t_test_tab;
    99999 rows selected.
    Execution Plan
    Plan hash value: 1565504962
    | Id  | Operation         | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |            | 99999 |   488K|    74   (3)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| T_TEST_TAB | 99999 |   488K|    74   (3)| 00:00:01 |
    Statistics
              1  recursive calls
              0  db block gets
           6915  consistent gets
            259  physical reads
              0  redo size
        1829388  bytes sent via SQL*Net to client
          73850  bytes received via SQL*Net from client
           6668  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          99999  rows processed
    SQL> create index idx_t_test_tab on t_test_tab(col1);
    Index created.
    SQL> exec dbms_stats.gather_table_stats('USER_OWNER','T_TEST_TAB',cascade => true);
    PL/SQL procedure successfully completed.
    SQL> select col1 from t_test_tab;
    99999 rows selected.
    Execution Plan
    Plan hash value: 1565504962
    | Id  | Operation         | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |            | 99999 |   488K|    74   (3)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| T_TEST_TAB | 99999 |   488K|    74   (3)| 00:00:01 |
    Statistics
              1  recursive calls
              0  db block gets
           6915  consistent gets
              0  physical reads
              0  redo size
        1829388  bytes sent via SQL*Net to client
          73850  bytes received via SQL*Net from client
           6668  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          99999  rows processed
    SQL> Sample test data when using Primary Key
    SQL> create table t_test_tab1(col1 number, col2 number, col3 varchar2(12));
    Table created.
    SQL> create sequence seq_t_test_tab1 start with 1 increment by 1 ;
    Sequence created.
    SQL> insert into t_test_tab1 select seq_t_test_tab1.nextval, round(dbms_random.value(1,999)) , 'B'||round(dbms_random.value(1,50))||'A' from dual connect by level < 100000;
    99999 rows created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_stats.gather_table_stats('USER_OWNER','T_TEST_TAB1',cascade => true);
    PL/SQL procedure successfully completed.
    SQL> select col1 from t_test_tab1;
    99999 rows selected.
    Execution Plan
    Plan hash value: 1727568366
    | Id  | Operation         | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |             | 99999 |   488K|    74   (3)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| T_TEST_TAB1 | 99999 |   488K|    74   (3)| 00:00:01 |
    Statistics
              1  recursive calls
              0  db block gets
           6915  consistent gets
              0  physical reads
              0  redo size
        1829388  bytes sent via SQL*Net to client
          73850  bytes received via SQL*Net from client
           6668  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          99999  rows processed
    SQL> alter table t_test_tab1 add constraint pk_t_test_tab1 primary key (col1);
    Table altered.
    SQL> exec dbms_stats.gather_table_stats('USER_OWNER','T_TEST_TAB1',cascade => true);
    PL/SQL procedure successfully completed.
    SQL> select col1 from t_test_tab1;
    99999 rows selected.
    Execution Plan
    Plan hash value: 2995826579
    | Id  | Operation            | Name           | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |                | 99999 |   488K|    59   (2)| 00:00:01 |
    |   1 |  INDEX FAST FULL SCAN| PK_T_TEST_TAB1 | 99999 |   488K|    59   (2)| 00:00:01 |
    Statistics
              1  recursive calls
              0  db block gets
           6867  consistent gets
              0  physical reads
              0  redo size
        1829388  bytes sent via SQL*Net to client
          73850  bytes received via SQL*Net from client
           6668  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          99999  rows processed
    SQL> If you see here the even though statistics were gathered,
         * In the 1st table T_TEST_TAB, the table is still using FULL table access after creation of index.
         * And in the 2nd table T_TEST_TAB1, table is using PRIMARY KEY as expected.
    Any comments ??
    Regards,
    BPat

    Thanks.
    Yes, ignored the NOT NULL part.Did a test and now it is working as expected
    SQL>  create table t_test_tab(col1 number not null, col2 number, col3 varchar2(12));
    Table created.
    SQL>
    create sequence seq_t_test_tab start with 1 increment by 1 ;SQL>
    Sequence created.
    SQL> insert into t_test_tab select seq_t_test_tab.nextval, round(dbms_random.value(1,999)) , 'B'||round(dbms_random.value(1,50))||'A' from dual connect by level < 100000;
    99999 rows created.
    SQL> commit;
    Commit complete.
    SQL>  exec dbms_stats.gather_table_stats('GREP_OWNER','T_TEST_TAB',cascade => true);
    PL/SQL procedure successfully completed.
    SQL>  set autotrace traceonly
    SQL>  select col1 from t_test_tab;
    99999 rows selected.
    Execution Plan
    Plan hash value: 1565504962
    | Id  | Operation         | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |            | 99999 |   488K|    74   (3)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| T_TEST_TAB | 99999 |   488K|    74   (3)| 00:00:01 |
    Statistics
              1  recursive calls
              0  db block gets
           6912  consistent gets
              0  physical reads
              0  redo size
        1829388  bytes sent via SQL*Net to client
          73850  bytes received via SQL*Net from client
           6668  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          99999  rows processed
    SQL>  create index idx_t_test_tab on t_test_tab(col1);
    Index created.
    SQL>  exec dbms_stats.gather_table_stats('GREP_OWNER','T_TEST_TAB',cascade => true);
    PL/SQL procedure successfully completed.
    SQL>  select col1 from t_test_tab;
    99999 rows selected.
    Execution Plan
    Plan hash value: 4115006285
    | Id  | Operation            | Name           | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |                | 99999 |   488K|    63   (2)| 00:00:01 |
    |   1 |  INDEX FAST FULL SCAN| IDX_T_TEST_TAB | 99999 |   488K|    63   (2)| 00:00:01 |
    Statistics
              1  recursive calls
              0  db block gets
           6881  consistent gets
              0  physical reads
              0  redo size
        1829388  bytes sent via SQL*Net to client
          73850  bytes received via SQL*Net from client
           6668  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          99999  rows processed
    SQL>

  • ORA-00604: error occurred at recursive SQL level 1 (10G)

    I was adding a default schema setting to a user id, saved the role and got the above error. ID hidden. All the roles below had default already added but had not caused error and some had been in place since Oracle9i
    SQL> REVOKE "ROL_HOBSONS_SCHEMA_VIEWS" FROM <USER ID>
    Revoke complete.
    SQL> GRANT "ROL_HOBSONS_SCHEMA_VIEWS" TO <USER ID>
    Grant complete.
    SQL> ALTER USER <USER ID>
    DEFAULT ROLE "DBA", "ROL_IRIS_CONVERSION", "ROL_UKFRSRPT_VIEW", "ROL_UKFRS_TRANS", "ROL_UKFRS_VIEW", "ROL_UKHRS_RPT", "ROL_UKSISRPT_FAMSBR", "ROL_UKFRS_RPT2", "ROL_CM_IT_CPE", "ROL_UKSISRPT_ VIEW", "CONNECT", "ROL_HOBSONS_SCHEMA_VIEWS", "RESOURCE", "ROL_NEW_UKSIS_VIEWS_IN_TEST", "ROL_HOBSONS_SCHEMA_VIEWS"
    ALTER USER <USER ID>
    DEFAULT ROLE "DBA", "ROL_IRIS_CONVERSION", "ROL_UKFRSRPT_VIEW", "ROL_UKFRS_TRANS", "ROL_UKFRS_VIEW", "ROL_UKHRS_RPT", "ROL_UKSISRPT_FAMSBR", "ROL_UKFRS_RPT2", "ROL_CM_IT_CPE", "ROL_UKSISRPT_ VIEW", "CONNECT", "ROL_HOBSONS_SCHEMA_VIEWS", "RESOURCE", "ROL_NEW_UKSIS_VIEWS_IN_TEST", "ROL_HOBSONS_SCHEMA_VIEWS"
    Error at line 4
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00001: unique constraint (SYS.I_DEFROLE1) violated
    The original change was made by a dba using current Oracle OEM. I accessed using TOAD10 to update another user with a default check mark. Upon trying to save, I got the above error. The updated access remained even though it gave an error and the user reported being able to get to her data. However, any changes to the role with adding or removing admin or default will display the error.
    Any ideas?
    thanks John

    Hi,
    Oracle makes an entry in SYS.DEFROLE$ table for a pair of user and default role.
    You are getting the error as some of the roles you are now assigning are already default roles for this user and hence UK violation.
    You can make use of *"sys.KU$_DEFROLE_LIST_VIEW"* to find already existing records. (see ex below)
    SQL> select * from sys.KU$_DEFROLE_LIST_VIEW;
       USER_ID USER_NAME                      ROLE                              ROLE_ID
            69 SRICKMAN                       DBA                                     4
            69 SRICKMAN                       ORACLE_DBA                            156Find already existing entries for your user, remove those roles from your query and try again.
    Regards,
    Ullhas

  • ORA-00604: error occurred at recursive SQL level 1 ORA-12705: invalid or un

    Hello, I'm so worried because I can't resolve the following problem with my oracle clients on my desktop.
    Initial state:
    SO: Windows XP SP1
    Oracle clients: Oracle 8i
    Issue: I can get connection and access to the DB successfully
    Middle state:
    SO: Windows XP SP1
    Oracle clients: The same Oracle 8i and a new Oracle 9 client.
    Issue: We need to swap between each DB 8 and 9 using the HOME SELECTOR to get connections and access. I understand that the Oracle 9 Client have back-compatibility with 8i DBs. If I tray to get connection to the DB 8i using the Oracle 9 we get the following errors.
    Errors: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: invalid or unknown NLS parameter value specified
    I decided to uninstall all the products (Oracle 8 and 9) using the Oracle Universal Installer. We didn't erase folders nor registers, we just used Oracle Universal Installer. Then we installed Oracle 10g
    Final Sate:
    SO: Windows XP SP1
    Oracle clients: only Oracle 10g
    Issue: I can get connection and access to the Oracle 9 DB. But trying with the Oracle 8i DB I got the same problem described above.
    Errors: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: invalid or unknown NLS parameter value specified
    Please can somebody tell me how can I resolve this problem.
    Thanks.
    Luis Carlos

    You need to check you're NLS environment settings, check out this thread
    ORA-12705:  invalid or unknown NLS parameter value specified

  • Read-only access permissions for new files/folders?

    System:
    Clean Install on new intel Xserve
    10.4.8 Server w/ Open Directory
    Windows clients can read/write completely fine...
    Clients connecting using AFP (whether Standard or Kerberos authentication) can access files, but when new files/folders are created on the server, they register as full permissions for the user who created them, but not for the rest of the group.
    The share(s) in question are set using POSIX from WGM: Full access for owner/group/everyone (changed it to this thinking it would help, but it does not). Of course, no one can make changes to a newly-created/deposited files/folders, which is just plain silly.
    I can chmod the permissions recursively from a script (which fixes the problem, of course) on a regular basis so that its not (as much of) an issue, but there is still a 5-minute lag for the script to kick in, since we don't want to bombard the server with chmod requests every minute....which is unnecessary in the first place!
    I have plenty of other setups which are identical but have no such issue...
    Any reason why POSIX permissions on the share are being ignored from every user account?
    Thanks,
    k

    "That's default posix behaviour no matter what access permissions you set on the sharepoint."
    I'm afraid this is dead wrong. What matters most is how you set permissions on the share, not if you've chosen to inherit vs. using POSIX. POSIX is still used in inherit functions, though you can use ACL's to override them. In this case, ACL's are not being used on those shares (though we tried it).
    After all, why would Apple (let alone anyone else) even offer the ability to change POSIX permissions on a share if it didn't have any effect? That would be somewhat contradictory in nature.
    Like I said before, I have several other installations which are identically setup that have no such issues.
    As for Windows, it is also not set to inherit permissions; we're setting those explicitly. And they work fine.
    Any other ideas?
    Thanks,
    k

  • "Permission denied" while accessing Canon 550D with libgphoto2

    I have followed the Wiki for access problems but I just can't get it to work, the camera is seen but I cannot transfer anything from it, I'm getting "libusb couldn't open USB device /dev/bus/usb/002/003: Permission denied. libusb requires write access to USB device nodes." all the time
    gphoto2 --summary:
    Camera summary:
    Manufacturer: Canon Inc.
    Model: Canon EOS 500D
    Version: 3-1.1.0
    Serial Number: 8486ab29c68547159242370d5563101a
    Vendor Extension ID: 0xb (2.0)
    Capture Formats: JPEG
    Display Formats: Association/Directory, Script, DPOF, MS AVI, MS Wave, JPEG, CRW, Unknown(b103), Unknown(bf02), Defined Type, Unknown(b104)
    Supported MTP Object Properties:
    Association/Directory/3001: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Script/3002: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    DPOF/3006: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    MS AVI/300a: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dc89/Duration de97/ScanDepth de9b/VideoFourCCCodec de9c/VideoBitRate de9a/AudioBitRate de93/SampleRate de94/NumberOfChannels
    MS Wave/3008: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc89/Duration de9a/AudioBitRate de93/SampleRate de94/NumberOfChannels
    JPEG/3801: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dcd3/ImageBitDepth
    CRW/b101: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Unknown(b103)/b103: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Unknown(bf02)/bf02: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified
    Defined Type/3800: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dcd3/ImageBitDepth
    Unknown(b104)/b104: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc08/DateCreated dc09/DateModified dc87/Width dc88/Height dc89/Duration de97/ScanDepth de9b/VideoFourCCCodec de9c/VideoBitRate de9a/AudioBitRate de93/SampleRate de94/NumberOfChannels
    Device Capabilities:
    File Download, File Deletion, File Upload
    No Image Capture, No Open Capture, Canon EOS Capture
    Storage Devices Summary:
    store_00020001:
    StorageDescription: SD
    VolumeLabel: None
    Storage Type: Removable RAM (memory card)
    Filesystemtype: Digital Camera Layout (DCIM)
    Access Capability: Read-Write
    Maximum Capability: 8160542720 (7782 MB)
    Free Space (Bytes): 698908672 (666 MB)
    Free Space (Images): -1
    Device Property Summary:
    Property 0xd402:(read only) (type=0xffff) 'Canon EOS 500D'
    Property 0xd407:(read only) (type=0x6) 1
    Property 0xd406:(readwrite) (type=0xffff) 'Unknown Initiator'
    and the debug file from gphoto
    0.000030 main(2): ALWAYS INCLUDE THE FOLLOWING LINES WHEN SENDING DEBUG MESSAGES TO THE MAILING LIST:
    0.000086 main(2): gphoto2 2.4.10
    0.000101 main(2): gphoto2 has been compiled with the following options:
    0.000115 main(2): + gcc (C compiler used)
    0.000126 main(2): + popt (mandatory, for handling command-line parameters)
    0.000138 main(2): + exif (for displaying EXIF information)
    0.000150 main(2): + no cdk (for accessing configuration options)
    0.000162 main(2): + aa (for displaying live previews)
    0.000174 main(2): + jpeg (for displaying live previews in JPEG format)
    0.000185 main(2): + readline (for easy navigation in the shell)
    0.000201 main(2): libgphoto2 2.4.10.1
    0.000215 main(2): libgphoto2 has been compiled with the following options:
    0.000228 main(2): + gcc (C compiler used)
    0.000242 main(2): + ltdl (for portable loading of camlibs)
    0.000254 main(2): + EXIF (for special handling of EXIF files)
    0.000268 main(2): libgphoto2_port 0.8.0
    0.000283 main(2): libgphoto2_port has been compiled with the following options:
    0.000296 main(2): + gcc (C compiler used)
    0.000307 main(2): + ltdl (for portable loading of camlibs)
    0.000321 main(2): + USB (libusb, for USB cameras)
    0.000333 main(2): + serial (for serial cameras)
    0.000345 main(2): + no resmgr (serial port access and locking)
    0.000357 main(2): + no baudboy (serial port locking)
    0.000368 main(2): + no ttylock (serial port locking)
    0.000380 main(2): + no lockdev (serial port locking)
    0.000392 main(2): CAMLIBS env var not set, using compile-time default instead
    0.000404 main(2): IOLIBS env var not set, using compile-time default instead
    0.000433 setting/gphoto2-setting.c(2): Creating $HOME/.gphoto
    0.000487 setting/gphoto2-setting.c(2): Loading settings from file "/home/david/.gphoto/settings"
    0.000724 main(2): The user has not specified both a model and a port. Try to figure them out.
    0.000749 gphoto2-port-info-list(2): Using ltdl to load io-drivers from '/usr/lib/libgphoto2_port/0.8.0'...
    0.000841 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/disk'.
    0.003838 gphoto2-port/disk(2): found fstab fsname tmpfs
    0.003872 gphoto2-port/disk(2): found fstab fsname tmps
    0.003896 gphoto2-port/disk(2): found fstab fsname UUID=5a94d96e-0fdd-425a-91c5-6fe96da349f0
    0.003912 gphoto2-port/disk(2): found fstab fsname UUID=ce706691-4517-477c-a42d-417ab8ffef38
    0.003931 gphoto2-port/disk(2): found fstab fsname UUID=eca58c28-a738-4567-a57e-d30d04d2fc69
    0.003951 gphoto2-port/disk(2): found fstab fsname UUID=10bc0f7b-5677-4a4b-9a20-678037ca06ff
    0.003972 gphoto2-port/disk(2): found fstab fsname 192.168.0.10:/Data
    0.004082 gphoto2-port/disk(2): found mtab fsname rootfs
    0.004103 gphoto2-port/disk(2): found mtab fsname proc
    0.004125 gphoto2-port/disk(2): found mtab fsname /sys
    0.004148 gphoto2-port/disk(2): found mtab fsname udev
    0.004170 gphoto2-port/disk(2): found mtab fsname /run
    0.004192 gphoto2-port/disk(2): found mtab fsname /dev/sda1
    0.004209 gphoto2-port/disk(2): found mtab fsname devpts
    0.004231 gphoto2-port/disk(2): found mtab fsname shm
    0.004252 gphoto2-port/disk(2): found mtab fsname tmpfs
    0.004274 gphoto2-port/disk(2): found mtab fsname tmps
    0.004294 gphoto2-port/disk(2): found mtab fsname /dev/sda3
    0.004313 gphoto2-port/disk(2): found mtab fsname /dev/sdc1
    0.004331 gphoto2-port/disk(2): found mtab fsname rpc_pipefs
    0.004356 gphoto2-port/disk(2): found mtab fsname 192.168.0.10:/Data/
    0.004408 gphoto2-port-info-list(2): Could not load port driver list: 'Unspecified error'.
    0.004425 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/ptpip'.
    0.004540 gphoto2-port-info-list(2): Loaded 'PTP/IP Connection' ('ptpip:') from '/usr/lib/libgphoto2_port/0.8.0/ptpip'.
    0.004560 gphoto2-port-info-list(2): Loaded '' ('^ptpip') from '/usr/lib/libgphoto2_port/0.8.0/ptpip'.
    0.004576 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004778 gphoto2-port-info-list(2): Loaded 'Serial Port 0' ('serial:/dev/ttyS0') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004797 gphoto2-port-info-list(2): Loaded 'Serial Port 1' ('serial:/dev/ttyS1') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004819 gphoto2-port-info-list(2): Loaded 'Serial Port 2' ('serial:/dev/ttyS2') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004835 gphoto2-port-info-list(2): Loaded 'Serial Port 3' ('serial:/dev/ttyS3') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004850 gphoto2-port-info-list(2): Loaded '' ('^serial') from '/usr/lib/libgphoto2_port/0.8.0/serial'.
    0.004865 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189309 gphoto2-port-info-list(2): Loaded '' ('^usb:') from '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189349 gphoto2-port-info-list(2): Loaded 'Universal Serial Bus' ('usb:001,005') from '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189364 gphoto2-port-info-list(2): Loaded 'Universal Serial Bus' ('usb:002,003') from '/usr/lib/libgphoto2_port/0.8.0/usb'.
    0.189380 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/usbdiskdirect'.
    0.189702 gphoto2-port-info-list(2): Called for filename '/usr/lib/libgphoto2_port/0.8.0/usbscsi'.
    0.189845 gphoto2-port-info-list(2): Counting entries (11 available)...
    0.189864 gphoto2-port-info-list(2): 7 regular entries available.
    0.190025 gphoto2-abilities-list(2): Using ltdl to load camera libraries from '/usr/lib/libgphoto2/2.4.10.1'...
    0.190458 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/adc65'.
    0.190478 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/agfa_cl20'.
    0.190491 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/aox'.
    0.190505 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ax203'.
    0.190520 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/barbie'.
    0.190533 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/canon'.
    0.190546 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/casio_qv'.
    0.190558 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/clicksmart310'.
    0.190571 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/digigr8'.
    0.190584 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/digita'.
    0.190597 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/dimagev'.
    0.190609 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/dimera3500'.
    0.190622 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/directory'.
    0.190634 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/enigma13'.
    0.190647 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/fuji'.
    0.190660 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/gsmart300'.
    0.190672 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/hp215'.
    0.190685 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/iclick'.
    0.190698 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jamcam'.
    0.190710 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jd11'.
    0.190723 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jl2005a'.
    0.190736 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/jl2005c'.
    0.190748 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc120'.
    0.190761 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc210'.
    0.190774 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc240'.
    0.190786 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_dc3200'.
    0.190799 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/kodak_ez200'.
    0.190812 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/konica'.
    0.190825 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/konica_qm150'.
    0.190837 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/largan'.
    0.190850 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/lg_gsm'.
    0.190862 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/mars'.
    0.190875 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/mustek'.
    0.190888 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_coolshot'.
    0.190910 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_dc1000'.
    0.190923 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_dc1580'.
    0.190936 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/panasonic_l859'.
    0.190948 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/pccam300'.
    0.190961 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/pccam600'.
    0.190973 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/polaroid_pdc320'.
    0.190986 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/polaroid_pdc640'.
    0.190999 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/polaroid_pdc700'.
    0.191012 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ptp2'.
    0.191024 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ricoh'.
    0.191037 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/ricoh_g3'.
    0.191050 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/samsung'.
    0.191063 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sierra'.
    0.191076 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sipix_blink2'.
    0.191088 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sipix_web2'.
    0.191101 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/smal'.
    0.191113 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sonix'.
    0.191126 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sony_dscf1'.
    0.191138 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sony_dscf55'.
    0.191151 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/soundvision'.
    0.191164 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/spca50x'.
    0.191176 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sq905'.
    0.191189 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/st2205'.
    0.191202 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/stv0674'.
    0.191214 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/stv0680'.
    0.191227 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/sx330z'.
    0.191240 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/topfield'.
    0.191252 gphoto2-abilities-list(2): Found '/usr/lib/libgphoto2/2.4.10.1/toshiba_pdrm11'.
    0.191269 gp-abilities-list(2): Found 62 camera drivers.
    0.210941 gphoto2-port-info-list(2): Counting entries (11 available)...
    0.210974 gphoto2-port-info-list(2): 7 regular entries available.
    0.210984 gphoto2-port(2): Creating new device...
    0.210996 gphoto2-port-info-list(2): Getting info of entry 0 (11 available)...
    0.211082 gphoto2-port(2): Setting settings...
    0.211095 gphoto2-port-info-list(2): Getting info of entry 1 (11 available)...
    0.211176 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211189 gphoto2-port(2): Setting settings...
    0.211199 gphoto2-port-info-list(2): Getting info of entry 2 (11 available)...
    0.211273 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211286 gphoto2-port(2): Setting settings...
    0.211295 gphoto2-port-info-list(2): Getting info of entry 3 (11 available)...
    0.211371 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211383 gphoto2-port(2): Setting settings...
    0.211393 gphoto2-port-info-list(2): Getting info of entry 4 (11 available)...
    0.211466 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
    0.211479 gphoto2-port(2): Setting settings...
    0.211488 gphoto2-port-info-list(2): Getting info of entry 5 (11 available)...
    0.213264 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
    0.213278 gphoto2-port(2): Setting settings...
    0.213287 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
    0.213296 gphoto2-abilities-list.c(1): Auto-detecting USB cameras...
    0.213330 gphoto2-port-usb(1): Looking for USB device (vendor 0x4a9, product 0x31cf)... found.
    0.213340 gphoto2-port-usb(2): inep to look for is 81
    0.213348 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, altsetting 0, inep 81, outep 02, intep 83, class 06, subclass 01
    0.213365 gphoto2-abilities-list.c(2): Found 'Canon EOS 500D' (0x4a9,0x31cf)
    0.213376 gphoto2-port-info-list(2): Getting info of entry 6 (11 available)...
    0.215043 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
    0.215056 gphoto2-port(2): Setting settings...
    0.215065 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
    0.215075 gphoto2-abilities-list.c(1): Auto-detecting USB cameras...
    0.215353 gphoto2-port(2): Freeing port...
    0.215365 gphoto2-port(2): Closing port...
    0.215411 gphoto2-camera(2): Setting abilities ('Canon EOS 500D')...
    0.215424 gphoto2-setting(2): Setting key 'model' to value 'Canon EOS 500D' (gphoto2)
    0.215435 gphoto2-setting(2): Saving 4 setting(s) to file "/home/david/.gphoto/settings"
    0.215589 gphoto2-port-info-list(2): Looking for path 'usb:001,005' (11 entries available)...
    0.215603 gphoto2-port-info-list(2): Getting info of entry 5 (11 available)...
    0.215613 gphoto2-camera(2): Setting port info for port 'Universal Serial Bus' at 'usb:001,005'...
    0.217304 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
    0.217318 gphoto2-port(2): Setting settings...
    0.217327 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
    0.217336 gphoto2-setting(2): Setting key 'port' to value 'usb:001,005' (gphoto2)
    0.217345 gphoto2-setting(2): Saving 4 setting(s) to file "/home/david/.gphoto/settings"
    0.217489 gphoto2-camera(2): Initializing camera...
    0.217506 gphoto2-port-usb(1): Looking for USB device (vendor 0x4a9, product 0x31cf)... found.
    0.217518 gphoto2-port-usb(2): inep to look for is 81
    0.217526 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, altsetting 0, inep 81, outep 02, intep 83, class 06, subclass 01
    0.217535 gphoto2-camera(2): Loading '/usr/lib/libgphoto2/2.4.10.1/ptp2'...
    0.217732 gphoto2-port(2): Opening USB port...
    0.217744 libusb(2): gp_port_usb_open()
    0.217771 libusb(2): claiming interface 0
    0.217793 ptp2(2): maxpacketsize 512
    0.218546 gphoto2-port(2): Setting timeout to 1500 millisecond(s)...
    0.218560 ptp(2): PTP: Opening session
    0.218572 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.218583 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 02 10-00 00 00 00 01 00 00 00 ................
    0.218678 ptp2/ptp_usb_getresp(2): reading response
    0.218690 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.218700 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.220052 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.220069 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-00 00 00 00 ....... ....
    0.220081 gphoto2-port(2): Setting timeout to 20000 millisecond(s)...
    0.220092 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.220102 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 01 10-01 00 00 00 ............
    0.220169 ptp2/ptp_usb_getdata(2): reading data
    0.220179 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.220188 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.222673 gphoto2-port(2): Could only read 383 out of 512 byte(s)
    0.222689 gphoto2-port(3): Hexdump of 383 = 0x17f bytes follows:
    0000 7f 01 00 00 02 00 01 10-01 00 00 00 64 00 06 00 ............d...
    0010 00 00 c8 00 00 00 00 4f-00 00 00 14 10 15 10 16 .......O........
    0020 10 01 10 02 10 03 10 06-10 04 10 01 91 05 10 02 ................
    0030 91 07 10 08 10 03 91 09-10 04 91 0a 10 1b 10 07 ................
    0040 91 0c 10 0d 10 0b 10 05-91 0f 10 06 91 10 91 27 ...............'
    0050 91 0b 91 08 91 09 91 0c-91 0e 91 0f 91 25 91 26 .............%.&
    0060 91 15 91 14 91 13 91 16-91 17 91 20 91 f0 91 18 ........... ....
    0070 91 21 91 f1 91 1d 91 0a-91 1b 91 1c 91 1e 91 1a .!..............
    0080 91 53 91 54 91 60 91 55-91 57 91 58 91 59 91 5a .S.T.`.U.W.X.Y.Z
    0090 91 1f 91 fe 91 ff 91 28-91 29 91 2d 91 2e 91 2f .......(.).-.../
    00a0 91 01 98 02 98 03 98 04-98 05 98 52 90 53 90 57 ...........R.S.W
    00b0 90 58 90 59 90 5a 90 5f-90 07 00 00 00 09 40 04 .X.Y.Z._......@.
    00c0 40 05 40 03 40 02 40 07-40 01 c1 03 00 00 00 02 @.@.@.@.@.......
    00d0 d4 07 d4 06 d4 01 00 00-00 01 38 0b 00 00 00 01 ..........8.....
    00e0 30 02 30 06 30 0a 30 08-30 01 38 01 b1 03 b1 02 0.0.0.0.0.8.....
    00f0 bf 00 38 04 b1 0b 43 00-61 00 6e 00 6f 00 6e 00 ..8...C.a.n.o.n.
    0100 20 00 49 00 6e 00 63 00-2e 00 00 00 0f 43 00 61 .I.n.c......C.a
    0110 00 6e 00 6f 00 6e 00 20-00 45 00 4f 00 53 00 20 .n.o.n. .E.O.S.
    0120 00 35 00 30 00 30 00 44-00 00 00 08 33 00 2d 00 .5.0.0.D....3.-.
    0130 31 00 2e 00 31 00 2e 00-30 00 00 00 21 38 00 34 1...1...0...!8.4
    0140 00 38 00 36 00 61 00 62-00 32 00 39 00 63 00 36 .8.6.a.b.2.9.c.6
    0150 00 38 00 35 00 34 00 37-00 31 00 35 00 39 00 32 .8.5.4.7.1.5.9.2
    0160 00 34 00 32 00 33 00 37-00 30 00 64 00 35 00 35 .4.2.3.7.0.d.5.5
    0170 00 36 00 33 00 31 00 30-00 31 00 61 00 00 00 .6.3.1.0.1.a...
    0.222715 ptp2/ptp_usb_getresp(2): reading response
    0.222724 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.222732 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.223419 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.223431 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-01 00 00 00 ....... ....
    0.223452 PTP2/ptp2/library.c(2): Device info:
    0.223461 PTP2/ptp2/library.c(2): Manufacturer: Canon Inc.
    0.223469 PTP2/ptp2/library.c(2): Model: Canon EOS 500D
    0.223477 PTP2/ptp2/library.c(2): device version: 3-1.1.0
    0.223485 PTP2/ptp2/library.c(2): serial number: '8486ab29c68547159242370d5563101a'
    0.223494 PTP2/ptp2/library.c(2): Vendor extension ID: 0x0000000b
    0.223502 PTP2/ptp2/library.c(2): Vendor extension version: 200
    0.223510 PTP2/ptp2/library.c(2): Vendor extension description: (null)
    0.223520 PTP2/ptp2/library.c(2): Functional Mode: 0x0000
    0.223528 PTP2/ptp2/library.c(2): PTP Standard Version: 100
    0.223536 PTP2/ptp2/library.c(2): Supported operations:
    0.223544 PTP2/ptp2/library.c(2): 0x1014
    0.223552 PTP2/ptp2/library.c(2): 0x1015
    0.223560 PTP2/ptp2/library.c(2): 0x1016
    0.223568 PTP2/ptp2/library.c(2): 0x1001
    0.223576 PTP2/ptp2/library.c(2): 0x1002
    0.223584 PTP2/ptp2/library.c(2): 0x1003
    0.223592 PTP2/ptp2/library.c(2): 0x1006
    0.223600 PTP2/ptp2/library.c(2): 0x1004
    0.223608 PTP2/ptp2/library.c(2): 0x9101
    0.223617 PTP2/ptp2/library.c(2): 0x1005
    0.223625 PTP2/ptp2/library.c(2): 0x9102
    0.223633 PTP2/ptp2/library.c(2): 0x1007
    0.223641 PTP2/ptp2/library.c(2): 0x1008
    0.223649 PTP2/ptp2/library.c(2): 0x9103
    0.223657 PTP2/ptp2/library.c(2): 0x1009
    0.223665 PTP2/ptp2/library.c(2): 0x9104
    0.223673 PTP2/ptp2/library.c(2): 0x100a
    0.223681 PTP2/ptp2/library.c(2): 0x101b
    0.223689 PTP2/ptp2/library.c(2): 0x9107
    0.223697 PTP2/ptp2/library.c(2): 0x100c
    0.223705 PTP2/ptp2/library.c(2): 0x100d
    0.223713 PTP2/ptp2/library.c(2): 0x100b
    0.223721 PTP2/ptp2/library.c(2): 0x9105
    0.223729 PTP2/ptp2/library.c(2): 0x100f
    0.223737 PTP2/ptp2/library.c(2): 0x9106
    0.223745 PTP2/ptp2/library.c(2): 0x9110
    0.223753 PTP2/ptp2/library.c(2): 0x9127
    0.223761 PTP2/ptp2/library.c(2): 0x910b
    0.223769 PTP2/ptp2/library.c(2): 0x9108
    0.223777 PTP2/ptp2/library.c(2): 0x9109
    0.223785 PTP2/ptp2/library.c(2): 0x910c
    0.223793 PTP2/ptp2/library.c(2): 0x910e
    0.223801 PTP2/ptp2/library.c(2): 0x910f
    0.223809 PTP2/ptp2/library.c(2): 0x9125
    0.223817 PTP2/ptp2/library.c(2): 0x9126
    0.223825 PTP2/ptp2/library.c(2): 0x9115
    0.223834 PTP2/ptp2/library.c(2): 0x9114
    0.223841 PTP2/ptp2/library.c(2): 0x9113
    0.223849 PTP2/ptp2/library.c(2): 0x9116
    0.223857 PTP2/ptp2/library.c(2): 0x9117
    0.223865 PTP2/ptp2/library.c(2): 0x9120
    0.223874 PTP2/ptp2/library.c(2): 0x91f0
    0.223882 PTP2/ptp2/library.c(2): 0x9118
    0.223890 PTP2/ptp2/library.c(2): 0x9121
    0.223898 PTP2/ptp2/library.c(2): 0x91f1
    0.223906 PTP2/ptp2/library.c(2): 0x911d
    0.223914 PTP2/ptp2/library.c(2): 0x910a
    0.223922 PTP2/ptp2/library.c(2): 0x911b
    0.223930 PTP2/ptp2/library.c(2): 0x911c
    0.223938 PTP2/ptp2/library.c(2): 0x911e
    0.223945 PTP2/ptp2/library.c(2): 0x911a
    0.223959 PTP2/ptp2/library.c(2): 0x9153
    0.223967 PTP2/ptp2/library.c(2): 0x9154
    0.223975 PTP2/ptp2/library.c(2): 0x9160
    0.223983 PTP2/ptp2/library.c(2): 0x9155
    0.223991 PTP2/ptp2/library.c(2): 0x9157
    0.223999 PTP2/ptp2/library.c(2): 0x9158
    0.224007 PTP2/ptp2/library.c(2): 0x9159
    0.224015 PTP2/ptp2/library.c(2): 0x915a
    0.224023 PTP2/ptp2/library.c(2): 0x911f
    0.224031 PTP2/ptp2/library.c(2): 0x91fe
    0.224039 PTP2/ptp2/library.c(2): 0x91ff
    0.224046 PTP2/ptp2/library.c(2): 0x9128
    0.224054 PTP2/ptp2/library.c(2): 0x9129
    0.224062 PTP2/ptp2/library.c(2): 0x912d
    0.224070 PTP2/ptp2/library.c(2): 0x912e
    0.224078 PTP2/ptp2/library.c(2): 0x912f
    0.224086 PTP2/ptp2/library.c(2): 0x9801
    0.224094 PTP2/ptp2/library.c(2): 0x9802
    0.224102 PTP2/ptp2/library.c(2): 0x9803
    0.224110 PTP2/ptp2/library.c(2): 0x9804
    0.224117 PTP2/ptp2/library.c(2): 0x9805
    0.224125 PTP2/ptp2/library.c(2): 0x9052
    0.224133 PTP2/ptp2/library.c(2): 0x9053
    0.224141 PTP2/ptp2/library.c(2): 0x9057
    0.224149 PTP2/ptp2/library.c(2): 0x9058
    0.224157 PTP2/ptp2/library.c(2): 0x9059
    0.224165 PTP2/ptp2/library.c(2): 0x905a
    0.224173 PTP2/ptp2/library.c(2): 0x905f
    0.224180 PTP2/ptp2/library.c(2): Events Supported:
    0.224188 PTP2/ptp2/library.c(2): 0x4009
    0.224196 PTP2/ptp2/library.c(2): 0x4004
    0.224204 PTP2/ptp2/library.c(2): 0x4005
    0.224212 PTP2/ptp2/library.c(2): 0x4003
    0.224220 PTP2/ptp2/library.c(2): 0x4002
    0.224228 PTP2/ptp2/library.c(2): 0x4007
    0.224235 PTP2/ptp2/library.c(2): 0xc101
    0.224243 PTP2/ptp2/library.c(2): Device Properties Supported:
    0.224251 PTP2/ptp2/library.c(2): 0xd402
    0.224259 PTP2/ptp2/library.c(2): 0xd407
    0.224267 PTP2/ptp2/library.c(2): 0xd406
    0.224329 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.224340 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-02 00 00 00 01 30 00 00 .............0..
    0.224419 ptp2/ptp_usb_getdata(2): reading data
    0.224429 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.224439 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.226419 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.226433 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-02 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.226443 ptp2/ptp_usb_getresp(2): reading response
    0.226452 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.226461 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.226669 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.226681 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-02 00 00 00 ....... ....
    0.226699 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.226710 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-03 00 00 00 02 30 00 00 .............0..
    0.227041 ptp2/ptp_usb_getdata(2): reading data
    0.227051 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.227060 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.228175 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.228193 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-03 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.228209 ptp2/ptp_usb_getresp(2): reading response
    0.228221 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.228235 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.228553 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.228574 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-03 00 00 00 ....... ....
    0.228599 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.228614 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-04 00 00 00 06 30 00 00 .............0..
    0.228923 ptp2/ptp_usb_getdata(2): reading data
    0.228943 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.228957 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.230051 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.230070 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-04 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.230086 ptp2/ptp_usb_getresp(2): reading response
    0.230099 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.230112 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.230426 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.230443 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-04 00 00 00 ....... ....
    0.230467 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.230483 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-05 00 00 00 0a 30 00 00 .............0..
    0.230673 ptp2/ptp_usb_getdata(2): reading data
    0.230688 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.230702 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.231800 gphoto2-port(2): Could only read 54 out of 512 byte(s)
    0.231818 gphoto2-port(3): Hexdump of 54 = 0x36 bytes follows:
    0000 36 00 00 00 02 00 01 98-05 00 00 00 13 00 00 00 6...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-89 dc 97 de 9b de 9c de ................
    0030 9a de 93 de 94 de - ......
    0.231833 ptp2/ptp_usb_getresp(2): reading response
    0.231846 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.231859 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.232175 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.232192 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-05 00 00 00 ....... ....
    0.232220 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.232236 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-06 00 00 00 08 30 00 00 .............0..
    0.232547 ptp2/ptp_usb_getdata(2): reading data
    0.232563 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.232578 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.233674 gphoto2-port(2): Could only read 44 out of 512 byte(s)
    0.233697 gphoto2-port(3): Hexdump of 44 = 0x2c bytes follows:
    0000 2c 00 00 00 02 00 01 98-06 00 00 00 0e 00 00 00 ,...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 89 dc 9a de-93 de 94 de ............
    0.233713 ptp2/ptp_usb_getresp(2): reading response
    0.233725 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.233739 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.234052 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.234071 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-06 00 00 00 ....... ....
    0.234097 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.234112 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-07 00 00 00 01 38 00 00 .............8..
    0.234298 ptp2/ptp_usb_getdata(2): reading data
    0.234313 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.234327 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.235425 gphoto2-port(2): Could only read 42 out of 512 byte(s)
    0.235443 gphoto2-port(3): Hexdump of 42 = 0x2a bytes follows:
    0000 2a 00 00 00 02 00 01 98-07 00 00 00 0d 00 00 00 *...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-d3 dc ..........
    0.235458 ptp2/ptp_usb_getresp(2): reading response
    0.235471 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.235484 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.235800 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.235817 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-07 00 00 00 ....... ....
    0.235848 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.235900 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-08 00 00 00 01 b1 00 00 ................
    0.236047 ptp2/ptp_usb_getdata(2): reading data
    0.236062 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.236076 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.237175 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.237193 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-08 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.237209 ptp2/ptp_usb_getresp(2): reading response
    0.237222 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.237235 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.237550 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.237567 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-08 00 00 00 ....... ....
    0.237591 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.237606 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-09 00 00 00 03 b1 00 00 ................
    0.237923 ptp2/ptp_usb_getdata(2): reading data
    0.237938 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.237952 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.239050 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.239067 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-09 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.239083 ptp2/ptp_usb_getresp(2): reading response
    0.239095 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.239109 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.239427 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.239446 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-09 00 00 00 ....... ....
    0.239470 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.239485 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-0a 00 00 00 02 bf 00 00 ................
    0.239673 ptp2/ptp_usb_getdata(2): reading data
    0.239688 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.239702 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.240802 gphoto2-port(2): Could only read 36 out of 512 byte(s)
    0.240820 gphoto2-port(3): Hexdump of 36 = 0x24 bytes follows:
    0000 24 00 00 00 02 00 01 98-0a 00 00 00 0a 00 00 00 $...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc - ....
    0.240835 ptp2/ptp_usb_getresp(2): reading response
    0.240848 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.240861 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.241174 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.241192 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0a 00 00 00 ....... ....
    0.241215 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.241230 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-0b 00 00 00 00 38 00 00 .............8..
    0.241548 ptp2/ptp_usb_getdata(2): reading data
    0.241563 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.241577 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.242675 gphoto2-port(2): Could only read 42 out of 512 byte(s)
    0.242694 gphoto2-port(3): Hexdump of 42 = 0x2a bytes follows:
    0000 2a 00 00 00 02 00 01 98-0b 00 00 00 0d 00 00 00 *...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-d3 dc ..........
    0.242710 ptp2/ptp_usb_getresp(2): reading response
    0.242729 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.242743 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.243051 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.243069 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0b 00 00 00 ....... ....
    0.243093 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.243108 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 01 98-0c 00 00 00 04 b1 00 00 ................
    0.243298 ptp2/ptp_usb_getdata(2): reading data
    0.243313 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.243327 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.244426 gphoto2-port(2): Could only read 54 out of 512 byte(s)
    0.244447 gphoto2-port(3): Hexdump of 54 = 0x36 bytes follows:
    0000 36 00 00 00 02 00 01 98-0c 00 00 00 13 00 00 00 6...............
    0010 01 dc 02 dc 03 dc 04 dc-07 dc 0b dc 41 dc 44 dc ............A.D.
    0020 08 dc 09 dc 87 dc 88 dc-89 dc 97 de 9b de 9c de ................
    0030 9a de 93 de 94 de - ......
    0.244463 ptp2/ptp_usb_getresp(2): reading response
    0.244475 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.244489 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.244801 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.244820 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0c 00 00 00 ....... ....
    0.244858 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.244874 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 04 10-0d 00 00 00 ............
    0.245047 ptp2/ptp_usb_getdata(2): reading data
    0.245062 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.245076 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.246174 gphoto2-port(2): Could only read 20 out of 512 byte(s)
    0.246193 gphoto2-port(3): Hexdump of 20 = 0x14 bytes follows:
    0000 14 00 00 00 02 00 04 10-0d 00 00 00 01 00 00 00 ................
    0010 01 00 02 00 - ....
    0.246208 ptp2/ptp_usb_getresp(2): reading response
    0.246220 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.246233 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.246924 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.246942 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0d 00 00 00 ....... ....
    0.246962 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.246977 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 05 10-0e 00 00 00 01 00 02 00 ................
    0.247048 ptp2/ptp_usb_getdata(2): reading data
    0.247063 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.247077 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.248424 gphoto2-port(2): Could only read 48 out of 512 byte(s)
    0.248442 gphoto2-port(3): Hexdump of 48 = 0x30 bytes follows:
    0000 30 00 00 00 02 00 05 10-0e 00 00 00 04 00 03 00 0...............
    0010 00 00 00 00 68 e6 01 00-00 00 00 80 a8 29 00 00 ....h........)..
    0020 00 00 ff ff ff ff 03 53-00 44 00 00 00 00 00 00 .......S.D......
    0.248457 ptp2/ptp_usb_getresp(2): reading response
    0.248470 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.248483 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.249178 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.249204 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0e 00 00 00 ....... ....
    0.249241 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.249257 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 01 10-0f 00 00 00 ............
    0.249424 ptp2/ptp_usb_getdata(2): reading data
    0.249439 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.249454 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.251051 gphoto2-port(2): Could only read 383 out of 512 byte(s)
    0.251075 gphoto2-port(3): Hexdump of 383 = 0x17f bytes follows:
    0000 7f 01 00 00 02 00 01 10-0f 00 00 00 64 00 06 00 ............d...
    0010 00 00 c8 00 00 00 00 4f-00 00 00 14 10 15 10 16 .......O........
    0020 10 01 10 02 10 03 10 06-10 04 10 01 91 05 10 02 ................
    0030 91 07 10 08 10 03 91 09-10 04 91 0a 10 1b 10 07 ................
    0040 91 0c 10 0d 10 0b 10 05-91 0f 10 06 91 10 91 27 ...............'
    0050 91 0b 91 08 91 09 91 0c-91 0e 91 0f 91 25 91 26 .............%.&
    0060 91 15 91 14 91 13 91 16-91 17 91 20 91 f0 91 18 ........... ....
    0070 91 21 91 f1 91 1d 91 0a-91 1b 91 1c 91 1e 91 1a .!..............
    0080 91 53 91 54 91 60 91 55-91 57 91 58 91 59 91 5a .S.T.`.U.W.X.Y.Z
    0090 91 1f 91 fe 91 ff 91 28-91 29 91 2d 91 2e 91 2f .......(.).-.../
    00a0 91 01 98 02 98 03 98 04-98 05 98 52 90 53 90 57 ...........R.S.W
    00b0 90 58 90 59 90 5a 90 5f-90 07 00 00 00 09 40 04 .X.Y.Z._......@.
    00c0 40 05 40 03 40 02 40 07-40 01 c1 03 00 00 00 02 @.@.@.@.@.......
    00d0 d4 07 d4 06 d4 01 00 00-00 01 38 0b 00 00 00 01 ..........8.....
    00e0 30 02 30 06 30 0a 30 08-30 01 38 01 b1 03 b1 02 0.0.0.0.0.8.....
    00f0 bf 00 38 04 b1 0b 43 00-61 00 6e 00 6f 00 6e 00 ..8...C.a.n.o.n.
    0100 20 00 49 00 6e 00 63 00-2e 00 00 00 0f 43 00 61 .I.n.c......C.a
    0110 00 6e 00 6f 00 6e 00 20-00 45 00 4f 00 53 00 20 .n.o.n. .E.O.S.
    0120 00 35 00 30 00 30 00 44-00 00 00 08 33 00 2d 00 .5.0.0.D....3.-.
    0130 31 00 2e 00 31 00 2e 00-30 00 00 00 21 38 00 34 1...1...0...!8.4
    0140 00 38 00 36 00 61 00 62-00 32 00 39 00 63 00 36 .8.6.a.b.2.9.c.6
    0150 00 38 00 35 00 34 00 37-00 31 00 35 00 39 00 32 .8.5.4.7.1.5.9.2
    0160 00 34 00 32 00 33 00 37-00 30 00 64 00 35 00 35 .4.2.3.7.0.d.5.5
    0170 00 36 00 33 00 31 00 30-00 31 00 61 00 00 00 .6.3.1.0.1.a...
    0.251101 ptp2/ptp_usb_getresp(2): reading response
    0.251113 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.251127 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.251801 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.251819 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-0f 00 00 00 ....... ....
    0.251843 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.251859 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 14 10-10 00 00 00 02 d4 00 00 ................
    0.251923 ptp2/ptp_usb_getdata(2): reading data
    0.251938 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.251952 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.253300 gphoto2-port(2): Could only read 80 out of 512 byte(s)
    0.253320 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows:
    0000 50 00 00 00 02 00 14 10-10 00 00 00 02 d4 ff ff P...............
    0010 00 0f 43 00 61 00 6e 00-6f 00 6e 00 20 00 45 00 ..C.a.n.o.n. .E.
    0020 4f 00 53 00 20 00 35 00-30 00 30 00 44 00 00 00 O.S. .5.0.0.D...
    0030 0f 43 00 61 00 6e 00 6f-00 6e 00 20 00 45 00 4f .C.a.n.o.n. .E.O
    0040 00 53 00 20 00 35 00 30-00 30 00 44 00 00 00 00 .S. .5.0.0.D....
    0.253336 ptp2/ptp_usb_getresp(2): reading response
    0.253348 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.253362 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.254051 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.254069 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-10 00 00 00 ....... ....
    0.254106 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.254122 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 14 10-11 00 00 00 07 d4 00 00 ................
    0.254174 ptp2/ptp_usb_getdata(2): reading data
    0.254188 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.254203 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.255551 gphoto2-port(2): Could only read 26 out of 512 byte(s)
    0.255571 gphoto2-port(3): Hexdump of 26 = 0x1a bytes follows:
    0000 1a 00 00 00 02 00 14 10-11 00 00 00 07 d4 06 00 ................
    0010 00 01 00 00 00 01 00 00-00 00 ..........
    0.255586 ptp2/ptp_usb_getresp(2): reading response
    0.255599 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.255612 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.256304 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.256326 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-11 00 00 00 ....... ....
    0.256357 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
    0.256372 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
    0000 10 00 00 00 01 00 14 10-12 00 00 00 06 d4 00 00 ................
    0.256421 ptp2/ptp_usb_getdata(2): reading data
    0.256436 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.256450 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.257925 gphoto2-port(2): Could only read 92 out of 512 byte(s)
    0.257944 gphoto2-port(3): Hexdump of 92 = 0x5c bytes follows:
    0000 5c 00 00 00 02 00 14 10-12 00 00 00 06 d4 ff ff \...............
    0010 01 12 55 00 6e 00 6b 00-6e 00 6f 00 77 00 6e 00 ..U.n.k.n.o.w.n.
    0020 20 00 49 00 6e 00 69 00-74 00 69 00 61 00 74 00 .I.n.i.t.i.a.t.
    0030 6f 00 72 00 00 00 12 55-00 6e 00 6b 00 6e 00 6f o.r....U.n.k.n.o
    0040 00 77 00 6e 00 20 00 49-00 6e 00 69 00 74 00 69 .w.n. .I.n.i.t.i
    0050 00 61 00 74 00 6f 00 72-00 00 00 00 .a.t.o.r....
    0.257961 ptp2/ptp_usb_getresp(2): reading response
    0.257974 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.257988 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.258674 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.258691 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-12 00 00 00 ....... ....
    0.259716 gp-camera(2): Freeing camera...
    0.259735 gphoto2-camera(2): Exiting camera ('Canon EOS 500D')...
    0.259758 gphoto2-port(2): Writing 12=0xc byte(s) to port...
    0.259774 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 01 00 03 10-13 00 00 00 ............
    0.259926 ptp2/ptp_usb_getresp(2): reading response
    0.259944 ptp2/ptp_usb_getpacket(2): getting next ptp packet
    0.259959 gphoto2-port(2): Reading 512=0x200 bytes from port...
    0.261177 gphoto2-port(2): Could only read 12 out of 512 byte(s)
    0.261195 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
    0000 0c 00 00 00 03 00 01 20-13 00 00 00 ....... ....
    0.261213 gphoto2-port(2): Clear halt...
    0.261301 gphoto2-port(2): Clear halt...
    0.261425 gphoto2-port(2): Clear halt...
    0.261548 gphoto2-port(2): Closing port...
    0.261631 gphoto2-filesystem(2): resetting filesystem
    0.261647 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
    0.261658 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
    0.261670 gphoto2-filesystem(2): Internally deleting all folders from '/'...
    0.261683 gphoto2-filesystem(2): Lookup folder '/'...
    0.261695 gphoto2-filesystem(2): Found! / is 0xe263e0
    0.261710 gphoto2-filesystem(2): Recurse delete folder 0xe263e0//
    0.261726 gphoto2-port(2): Freeing port...
    0.261741 gphoto2-port(2): Closing port...
    0.261798 gphoto2-filesystem(2): resetting filesystem
    0.261813 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
    0.261825 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
    0.261836 gphoto2-filesystem(2): Internally deleting all folders from '/'...
    0.261848 gphoto2-filesystem(2): Lookup folder '/'...
    0.261860 gphoto2-filesystem(2): Found! / is 0xe263e0
    0.261872 gphoto2-filesystem(2): Recurse delete folder 0xe263e0//
    lsusb | grep Canon
    Bus 001 Device 005: ID 04a9:31cf Canon, Inc.
    ls -lR of /dev/bus/usb/001
    total 0
    drwxr-xr-x 2 root root 80 Dec 25 12:54 .
    drwxr-xr-x 10 root root 200 Dec 25 12:19 ..
    crw-rw-r-- 1 root root 189, 0 Dec 25 12:19 001
    crw-rw----+ 1 root camera 189, 4 Dec 25 13:13 005
    [root@dreki 001]# ls -lR
    total 0
    crw-rw-r-- 1 root root 189, 0 Dec 25 12:19 001
    crw-rw----+ 1 root camera 189, 4 Dec 25 13:13 005
    I am member of group "camera"

    Have you tried 'sudo gphoto2 --get-all-files' as a user or were you doing this as root?
    The errors mentions /dev/bus/usb/002/003 and your camera seems to be /dev/bus/usb/001/005. If I'm on the right track, check what device is this /dev/bus/usb/002/003.
    Last edited by karol (2011-12-25 14:48:40)

  • CR4E plug-in   ERROR CONNECTIVITY  MS ACCESS DATABASE :data connection that isn't fully supported by this version of the Crystal Reports designer

    Post Author: arfetgas
    CA Forum: Data Connectivity and SQL
    Hi im trying to view a simple report , this report have some parameters from a MS Access database.I  configure  everything, The ODBCJDBC bridge, the dns System on Windows, etc... and the problem its  like this,  I connect the database, but the schema its empty  , i cant map, the dinamic parameters of my report, with my access database.I have this errors  : at same time 1. This report uses a data connection that isn't fully supported by this version of the Crystal Reports designer.  You can modify the report in the designer, but the following actions that access this connection will fail: Browse data, verify database, and report preview.  We recommend you set the datasource location to a JDBC or Java Result Set data source.  2. Java.lang.RuntimeException: WARNING: Blocked recursive attempt to close part com.businessobjects.crystalreports.integration.eclipse.jspeditor.CRJSPEditor while still in the middle of activating it    at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:1247)    at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java:1367)    at org.eclipse.ui.internal.EditorPane.doHide(EditorPane.java:61)    at org.eclipse.ui.internal.PartStack.close(PartStack.java:543)    at org.eclipse.ui.internal.EditorStack.close(EditorStack.java:206)    at org.eclipse.ui.internal.PartStack$1.close(PartStack.java:122)    at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:81)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:276)    at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.access$1(DefaultTabFolder.java:1)    at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder$1.closeButtonPressed(DefaultTabFolder.java:67)    at org.eclipse.ui.internal.presentations.PaneFolder.notifyCloseListeners(PaneFolder.java:596)    at org.eclipse.ui.internal.presentations.PaneFolder$3.close(PaneFolder.java:189)    at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:2159)    at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:320)    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)    at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)    at org.eclipse.jface.window.Window.open(Window.java:796)    at org.eclipse.ui.texteditor.AbstractTextEditor.handleEditorInputChanged(AbstractTextEditor.java:4403)    at org.eclipse.ui.texteditor.StatusTextEditor.handleEditorInputChanged(StatusTextEditor.java:220)    at org.eclipse.ui.texteditor.AbstractTextEditor.sanityCheckState(AbstractTextEditor.java:4555)    at org.eclipse.ui.texteditor.StatusTextEditor.sanityCheckState(StatusTextEditor.java:210)    at org.eclipse.ui.texteditor.AbstractTextEditor.safelySanityCheckState(AbstractTextEditor.java:4533)    at org.eclipse.wst.sse.ui.StructuredTextEditor.safelySanityCheckState(StructuredTextEditor.java:2945)    at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.handleActivation(AbstractTextEditor.java:921)    at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.partActivated(AbstractTextEditor.java:879)    at org.eclipse.ui.internal.PartListenerList$1.run(PartListenerList.java:72)    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)    at org.eclipse.core.runtime.Platform.run(Platform.java:857)    at org.eclipse.ui.internal.PartListenerList.fireEvent(PartListenerList.java:57)    at org.eclipse.ui.internal.PartListenerList.firePartActivated(PartListenerList.java:70)    at org.eclipse.ui.internal.PartService.firePartActivated(PartService.java:73)    at org.eclipse.ui.internal.PartService.setActivePart(PartService.java:171)    at org.eclipse.ui.internal.WWinPartService.updateActivePart(WWinPartService.java:124)    at org.eclipse.ui.internal.WWinPartService.access$0(WWinPartService.java:115)    at org.eclipse.ui.internal.WWinPartService$1.partDeactivated(WWinPartService.java:48)    at org.eclipse.ui.internal.PartListenerList2$4.run(PartListenerList2.java:113)    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)    at org.eclipse.core.runtime.Platform.run(Platform.java:857)    at org.eclipse.ui.internal.PartListenerList2.fireEvent(PartListenerList2.java:53)    at org.eclipse.ui.internal.PartListenerList2.firePartDeactivated(PartListenerList2.java:111)    at org.eclipse.ui.internal.PartService.firePartDeactivated(PartService.java:116)    at org.eclipse.ui.internal.PartService.setActivePart(PartService.java:165)    at org.eclipse.ui.internal.WorkbenchPagePartList.fireActivePartChanged(WorkbenchPagePartList.java:56)    at org.eclipse.ui.internal.PartList.setActivePart(PartList.java:126)    at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:3402)    at org.eclipse.ui.internal.WorkbenchPage.requestActivation(WorkbenchPage.java:2946)    at org.eclipse.ui.internal.PartPane.requestActivation(PartPane.java:265)    at org.eclipse.ui.internal.EditorPane.requestActivation(EditorPane.java:98)    at org.eclipse.ui.internal.presentations.PresentablePart.setFocus(PresentablePart.java:191)    at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:92)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:272)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.handleMouseDown(AbstractTabFolder.java:342)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder$3.mouseDown(AbstractTabFolder.java:79)    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:178)    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)    at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)    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.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)    at org.eclipse.equinox.launcher.Main.run(Main.java:1173)!ENTRY com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Error loading file prueba.rpt!STACK 0java.lang.Exception: Error loading file prueba.rpt    at com.businessobjects.integration.eclipse.shared.EclipseLogger.logMessage(Unknown Source)    at com.businessobjects.integration.eclipse.shared.EclipseLogger.handleMessage(Unknown Source)    at com.businessobjects.integration.capabilities.logging.LogManager.message(Unknown Source)    at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validateOneFile(Unknown Source)    at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validate(Unknown Source)    at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validateInJob(Unknown Source)    at org.eclipse.wst.validation.internal.operations.ValidatorJob.run(ValidatorJob.java:75)    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Plug-in Provider:.... Business Objects!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Plug-in name:.... Crystal Reports Java Development Tools!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Plug-in ID:.... com.businessobjects.crystalreports.integration.eclipse!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Version:.... 1.0.4.v1094!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE The error was detected in com.businessobjects.crystalreports.integration.eclipse  Please PEOPLE OF BUSINESS OBJECTS  ,  I need some support , I think the problem its in your plug in09 April 2008 , let me how much time i need to wait Your support , maybe , ill try  jasper Reports, or Birth, it depends on You people of BO  any req  -
    >   [email protected] thanks to people  that can help ...           

    Post Author: arfetgas
    CA Forum: Data Connectivity and SQL
    Hi im trying to view a simple report , this report have some parameters from a MS Access database.I  configure  everything, The ODBCJDBC bridge, the dns System on Windows, etc... and the problem its  like this,  I connect the database, but the schema its empty  , i cant map, the dinamic parameters of my report, with my access database.I have this errors  : at same time 1. This report uses a data connection that isn't fully supported by this version of the Crystal Reports designer.  You can modify the report in the designer, but the following actions that access this connection will fail: Browse data, verify database, and report preview.  We recommend you set the datasource location to a JDBC or Java Result Set data source.  2. Java.lang.RuntimeException: WARNING: Blocked recursive attempt to close part com.businessobjects.crystalreports.integration.eclipse.jspeditor.CRJSPEditor while still in the middle of activating it    at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:1247)    at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java:1367)    at org.eclipse.ui.internal.EditorPane.doHide(EditorPane.java:61)    at org.eclipse.ui.internal.PartStack.close(PartStack.java:543)    at org.eclipse.ui.internal.EditorStack.close(EditorStack.java:206)    at org.eclipse.ui.internal.PartStack$1.close(PartStack.java:122)    at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:81)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:276)    at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.access$1(DefaultTabFolder.java:1)    at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder$1.closeButtonPressed(DefaultTabFolder.java:67)    at org.eclipse.ui.internal.presentations.PaneFolder.notifyCloseListeners(PaneFolder.java:596)    at org.eclipse.ui.internal.presentations.PaneFolder$3.close(PaneFolder.java:189)    at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:2159)    at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:320)    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)    at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)    at org.eclipse.jface.window.Window.open(Window.java:796)    at org.eclipse.ui.texteditor.AbstractTextEditor.handleEditorInputChanged(AbstractTextEditor.java:4403)    at org.eclipse.ui.texteditor.StatusTextEditor.handleEditorInputChanged(StatusTextEditor.java:220)    at org.eclipse.ui.texteditor.AbstractTextEditor.sanityCheckState(AbstractTextEditor.java:4555)    at org.eclipse.ui.texteditor.StatusTextEditor.sanityCheckState(StatusTextEditor.java:210)    at org.eclipse.ui.texteditor.AbstractTextEditor.safelySanityCheckState(AbstractTextEditor.java:4533)    at org.eclipse.wst.sse.ui.StructuredTextEditor.safelySanityCheckState(StructuredTextEditor.java:2945)    at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.handleActivation(AbstractTextEditor.java:921)    at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.partActivated(AbstractTextEditor.java:879)    at org.eclipse.ui.internal.PartListenerList$1.run(PartListenerList.java:72)    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)    at org.eclipse.core.runtime.Platform.run(Platform.java:857)    at org.eclipse.ui.internal.PartListenerList.fireEvent(PartListenerList.java:57)    at org.eclipse.ui.internal.PartListenerList.firePartActivated(PartListenerList.java:70)    at org.eclipse.ui.internal.PartService.firePartActivated(PartService.java:73)    at org.eclipse.ui.internal.PartService.setActivePart(PartService.java:171)    at org.eclipse.ui.internal.WWinPartService.updateActivePart(WWinPartService.java:124)    at org.eclipse.ui.internal.WWinPartService.access$0(WWinPartService.java:115)    at org.eclipse.ui.internal.WWinPartService$1.partDeactivated(WWinPartService.java:48)    at org.eclipse.ui.internal.PartListenerList2$4.run(PartListenerList2.java:113)    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)    at org.eclipse.core.runtime.Platform.run(Platform.java:857)    at org.eclipse.ui.internal.PartListenerList2.fireEvent(PartListenerList2.java:53)    at org.eclipse.ui.internal.PartListenerList2.firePartDeactivated(PartListenerList2.java:111)    at org.eclipse.ui.internal.PartService.firePartDeactivated(PartService.java:116)    at org.eclipse.ui.internal.PartService.setActivePart(PartService.java:165)    at org.eclipse.ui.internal.WorkbenchPagePartList.fireActivePartChanged(WorkbenchPagePartList.java:56)    at org.eclipse.ui.internal.PartList.setActivePart(PartList.java:126)    at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:3402)    at org.eclipse.ui.internal.WorkbenchPage.requestActivation(WorkbenchPage.java:2946)    at org.eclipse.ui.internal.PartPane.requestActivation(PartPane.java:265)    at org.eclipse.ui.internal.EditorPane.requestActivation(EditorPane.java:98)    at org.eclipse.ui.internal.presentations.PresentablePart.setFocus(PresentablePart.java:191)    at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:92)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:272)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.handleMouseDown(AbstractTabFolder.java:342)    at org.eclipse.ui.internal.presentations.util.AbstractTabFolder$3.mouseDown(AbstractTabFolder.java:79)    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:178)    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)    at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)    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.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)    at org.eclipse.equinox.launcher.Main.run(Main.java:1173)!ENTRY com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Error loading file prueba.rpt!STACK 0java.lang.Exception: Error loading file prueba.rpt    at com.businessobjects.integration.eclipse.shared.EclipseLogger.logMessage(Unknown Source)    at com.businessobjects.integration.eclipse.shared.EclipseLogger.handleMessage(Unknown Source)    at com.businessobjects.integration.capabilities.logging.LogManager.message(Unknown Source)    at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validateOneFile(Unknown Source)    at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validate(Unknown Source)    at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validateInJob(Unknown Source)    at org.eclipse.wst.validation.internal.operations.ValidatorJob.run(ValidatorJob.java:75)    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Plug-in Provider:.... Business Objects!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Plug-in name:.... Crystal Reports Java Development Tools!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Plug-in ID:.... com.businessobjects.crystalreports.integration.eclipse!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE Version:.... 1.0.4.v1094!SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788!MESSAGE The error was detected in com.businessobjects.crystalreports.integration.eclipse  Please PEOPLE OF BUSINESS OBJECTS  ,  I need some support , I think the problem its in your plug in09 April 2008 , let me how much time i need to wait Your support , maybe , ill try  jasper Reports, or Birth, it depends on You people of BO  any req  -
    >   [email protected] thanks to people  that can help ...           

  • CR4E plug-in ERROR CONNECTIVITY MS ACCESS DATABASE :data connection that isn't fully supported by this version of the Crystal R

    Hi im trying to view a simple report , this report have some parameters from a MS Access database.
    I  configure  everything, The ODBCJDBC bridge, the dns System on Windows, etc...
    and the problem its  like this,
    I connect the database, but the schema its empty  , i cant map, the dinamic parameters of my report, with my access database.
    I have this errors  : at same time
    1. This report uses a data connection that isn't fully supported by this version of the Crystal Reports designer.  You can modify the report in the designer, but the following actions that access this connection will fail: Browse data, verify database, and report preview.  We recommend you set the datasource location to a JDBC or Java Result Set data source.
    2. Java.lang.RuntimeException: WARNING: Blocked recursive attempt to close part com.businessobjects.crystalreports.integration.eclipse.jspeditor.CRJSPEditor while still in the middle of activating it
        at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:1247)
        at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java:1367)
        at org.eclipse.ui.internal.EditorPane.doHide(EditorPane.java:61)
        at org.eclipse.ui.internal.PartStack.close(PartStack.java:543)
        at org.eclipse.ui.internal.EditorStack.close(EditorStack.java:206)
        at org.eclipse.ui.internal.PartStack$1.close(PartStack.java:122)
        at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:81)
        at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267)
        at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:276)
        at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.access$1(DefaultTabFolder.java:1)
        at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder$1.closeButtonPressed(DefaultTabFolder.java:67)
        at org.eclipse.ui.internal.presentations.PaneFolder.notifyCloseListeners(PaneFolder.java:596)
        at org.eclipse.ui.internal.presentations.PaneFolder$3.close(PaneFolder.java:189)
        at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:2159)
        at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:320)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
        at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)
        at org.eclipse.jface.window.Window.open(Window.java:796)
        at org.eclipse.ui.texteditor.AbstractTextEditor.handleEditorInputChanged(AbstractTextEditor.java:4403)
        at org.eclipse.ui.texteditor.StatusTextEditor.handleEditorInputChanged(StatusTextEditor.java:220)
        at org.eclipse.ui.texteditor.AbstractTextEditor.sanityCheckState(AbstractTextEditor.java:4555)
        at org.eclipse.ui.texteditor.StatusTextEditor.sanityCheckState(StatusTextEditor.java:210)
        at org.eclipse.ui.texteditor.AbstractTextEditor.safelySanityCheckState(AbstractTextEditor.java:4533)
        at org.eclipse.wst.sse.ui.StructuredTextEditor.safelySanityCheckState(StructuredTextEditor.java:2945)
        at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.handleActivation(AbstractTextEditor.java:921)
        at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.partActivated(AbstractTextEditor.java:879)
        at org.eclipse.ui.internal.PartListenerList$1.run(PartListenerList.java:72)
        at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
        at org.eclipse.core.runtime.Platform.run(Platform.java:857)
        at org.eclipse.ui.internal.PartListenerList.fireEvent(PartListenerList.java:57)
        at org.eclipse.ui.internal.PartListenerList.firePartActivated(PartListenerList.java:70)
        at org.eclipse.ui.internal.PartService.firePartActivated(PartService.java:73)
        at org.eclipse.ui.internal.PartService.setActivePart(PartService.java:171)
        at org.eclipse.ui.internal.WWinPartService.updateActivePart(WWinPartService.java:124)
        at org.eclipse.ui.internal.WWinPartService.access$0(WWinPartService.java:115)
        at org.eclipse.ui.internal.WWinPartService$1.partDeactivated(WWinPartService.java:48)
        at org.eclipse.ui.internal.PartListenerList2$4.run(PartListenerList2.java:113)
        at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
        at org.eclipse.core.runtime.Platform.run(Platform.java:857)
        at org.eclipse.ui.internal.PartListenerList2.fireEvent(PartListenerList2.java:53)
        at org.eclipse.ui.internal.PartListenerList2.firePartDeactivated(PartListenerList2.java:111)
        at org.eclipse.ui.internal.PartService.firePartDeactivated(PartService.java:116)
        at org.eclipse.ui.internal.PartService.setActivePart(PartService.java:165)
        at org.eclipse.ui.internal.WorkbenchPagePartList.fireActivePartChanged(WorkbenchPagePartList.java:56)
        at org.eclipse.ui.internal.PartList.setActivePart(PartList.java:126)
        at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:3402)
        at org.eclipse.ui.internal.WorkbenchPage.requestActivation(WorkbenchPage.java:2946)
        at org.eclipse.ui.internal.PartPane.requestActivation(PartPane.java:265)
        at org.eclipse.ui.internal.EditorPane.requestActivation(EditorPane.java:98)
        at org.eclipse.ui.internal.presentations.PresentablePart.setFocus(PresentablePart.java:191)
        at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:92)
        at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267)
        at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:272)
        at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.handleMouseDown(AbstractTabFolder.java:342)
        at org.eclipse.ui.internal.presentations.util.AbstractTabFolder$3.mouseDown(AbstractTabFolder.java:79)
        at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:178)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
        at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
        at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        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.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    !ENTRY com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788
    !MESSAGE Error loading file prueba.rpt
    !STACK 0
    java.lang.Exception: Error loading file prueba.rpt
        at com.businessobjects.integration.eclipse.shared.EclipseLogger.logMessage(Unknown Source)
        at com.businessobjects.integration.eclipse.shared.EclipseLogger.handleMessage(Unknown Source)
        at com.businessobjects.integration.capabilities.logging.LogManager.message(Unknown Source)
        at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validateOneFile(Unknown Source)
        at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validate(Unknown Source)
        at com.businessobjects.crystalreports.integration.eclipse.wtp.CrystalReportsValidator.validateInJob(Unknown Source)
        at org.eclipse.wst.validation.internal.operations.ValidatorJob.run(ValidatorJob.java:75)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    !SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788
    !MESSAGE Plug-in Provider:.... Business Objects
    !SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788
    !MESSAGE Plug-in name:.... Crystal Reports Java Development Tools
    !SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788
    !MESSAGE Plug-in ID:.... com.businessobjects.crystalreports.integration.eclipse
    !SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788
    !MESSAGE Version:.... 1.0.4.v1094
    !SUBENTRY 1 com.businessobjects.crystalreports.integration.eclipse 4 4 2008-04-02 15:30:13.788
    !MESSAGE The error was detected in com.businessobjects.crystalreports.integration.eclipse
    Please PEOPLE OF BUSINESS OBJECTS  ,  I need some support , I think the problem its in your plug in
    09 April 2008 , let me how much time i need to wait Your support , maybe , ill try  jasper Reports, or Birth, it depends on You people of BO
    any req  -
    >   [email protected]
    thanks to people  that can help ...

    There are some other solutions possible.
    1. Get another driver. The only one known is java only so it wont crash. But is not not free.
    2. Use a proxy driver. That means that another app actually does the database work. If it crashes you just start it again (which you can do in your main code.) That way it won't take down your server. There are commercial jdbc drivers that claim MS Access but are are really just proxy implementations as an option in this area.

  • Files cannot access because they are used by another process

    I am trying to delete some files in:C:\inetpub\wwwroot\my_site\Under my_site, there are many files and folders, including bin folders which has some .dll files. As soon as I run the script, I get an error message that some of the .dll files cannot be accessed because they are being used by another process, and on some dlls, I get a permission denied error.I don't know what the problem is. I am using the following script, which works perfect for any other folders, but not for the one I am trying to delete. $content = get-childitem 'C:\Backups\my_site'
    $sortedContent = $content | Sort-Object LastWriteTime -Descending
    write-host "This is the list of all the backups for my_site :"
    $count = 1
    foreach ($item in $sortedContent)
    Write-Host ("{0}: {1}" -f $count, $item.Name)
    $count++
    # 2.Take input from user
    $itemNumber = Read-Host "Please select which backup you want to restore"
    $confirmation = Read-Host "Are you Sure You Want To Proceed:"
    # 2.Take input from user
    if ($confirmation -eq 'y') {
    # 3. BACKUP script
    ./bacup_mysite.ps1
    # 3. BACKUP
    # 4. DELETE CONTENTS OF my_site
    get-childitem "C:\inetpub\wwwroot\my_site\" -recurse | % {
    remove-item $_.FullName -recurse -force
    # 4. DELETE CONTENTS OF APP
    # 5. COPY CONTENTS OF ZIP INTO APP DIRECTORY
    $itemNumber = $itemNumber -1
    if($sortedContent[$itemNumber].PSIsContainer -eq $true)
    $src = $sortedContent[$itemNumber].FullName + "\"
    $WebzipPath = $src + "my_site.zip"
    $Date = Get-Date
    $folder_date = $Date.ToString("yyyy-MM-dd_HHmm")
    $tempPath = 'C:\_Temp\Restore\my_site_restore_' + $folder_date
    if (!(Test-Path -path $tempPath))
    New-Item $tempPath -type directory
    ./Library/unzip.ps1 $WebzipPath $tempPath
    $tempPathWeb = $tempPath + "/my_site/*"
    Copy-Item -Path $tempPat -Destination 'C:\inetpub\wwwroot\my_site\' -Recurse -
    force

     am using a script which backups the folders and than in the next block tries to delete those folder from there original location.This is the script
    if ($confirmation -eq 'y') {
    # 3. BACKUP script
    ./bakup_mysite.ps1
    #If i put a Read-Host here it does stop and than ask user to press any key and than it
    deletes the next block, but i want to put a wait so user does not have to press any key
    and everything happens automatically, # 3. BACKUP
    # 4. DELETE CONTENTS OF my_site
    get-childitem "C:\inetpub\wwwroot\my_site\" -recurse | % {
    remove-item $_.FullName -recurse -force
    }I would like the backup to finish first and than delete the original files, because if i use the above script while backup up some files gets locked and at the same time the next block gets executed and it tries to delete the files thats why i would like to put a wait for backup to finish
    Check your assumptions.  How do you know that backup is the only process that might have a lock on those files?
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • What are the key requirements to write a recursive cte?

    what are the key requirements to write a recursive cte?
    when we will go for a recursive cte.

    A common table expression (CTE) can be thought of as a temporary result set that is defined within the execution scope of a single SELECT, INSERT, UPDATE, DELETE, or CREATE VIEW statement. A CTE is similar to a derived table in that it is not stored as an
    object and lasts only for the duration of the query. Unlike a derived table, a CTE can be self-referencing and can be referenced multiple times in the same query.
    A CTE can be used to:
    Create a recursive query. For more information, see https://technet.microsoft.com/en-us/library/ms186243%28v=sql.105%29.aspx
    Substitute for a view when the general use of a view is not required; that is, you do not have to store the definition in metadata.
    Enable grouping by a column that is derived from a scalar subselect, or a function that is either not deterministic or has external access.
    Reference the resulting table multiple times in the same statement.
    Source : https://technet.microsoft.com/en-us/library/ms190766%28v=sql.105%29.aspx

  • JVM crashes with illegal Memory Access ..

    [JRockit] ERROR: The JVM has crashed. Writing crash information to C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.dump.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:13:27 on Mon Dec 07 20:06:05 2009
    * If you see this dump, please go to *
    * http://edocs.bea.com/jrockit/go2troubleshooting.html *
    * for troubleshooting information. *
    Additional information is available in:
    C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.dump
    C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.mdmp
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (c0000005) at 0x00466F21 - memory at 0x00000000 could not be read.
    Minidump : Wrote mdmp. Size is 472MB
    SafeDllMode : -1
    Version : BEA JRockit(R) R27.6.0-50_o-100423-1.6.0_05-20080626-2105-windows-ia32
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#2.
    : YC is not running. Last finished YC was YC#24.
    OC History : Strategy genparpar was used for OC#1 to OC#2.
    YC History : Ran 3 YCs before OC#1.
    : Ran 3 YCs before OC#2.
    : Ran 18 YCs since last OC.
    YC Promotion : Last YC successfully promoted all objects
    Heap : 0x00C00000 - 0x10C00000 (Size: 256 MB)
    Compaction : 0x00C00000 - 0x01C00000 (Current compaction type: internal)
    NurseryList : 0x00E57CF0 - 0x08132978
    KeepArea : 0x04693C88 - 0x06320918
    NurseryMarker: [ 0x04693C88,  0x06320918 ]
    CompRefs : References are 32-bit.
    CPU : Intel Core 2 SSE SSE2 SSE3 SSSE3 SSE4.1 EM64T
    Number CPUs : 2
    Tot Phys Mem : 2096984064 (1999 MB)
    OS version : Microsoft Windows XP version 5.1 Service Pack 3 (Build 2600) (32-bit)
    Thread System: Windows Threads
    Java locking : Lazy unlocking enabled (class banning) (transfer banning)
    State : JVM is running
    Command Line : -Xverify:all -Xms256m -Xmx512m -Xverify:none -da -Dplatform.home=C:\bea10.3\WLSERV~1.3 -Dwls.home=C:\bea10.3\WLSERV~1.3\server -Dweblogic.home=C:\bea10.3\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\bea10.3\patch_wlw1030\profiles\default\sysext_manifest_classpath;C:\bea10.3\patch_wls1030\profiles\default\sysext_manifest_classpath;C:\bea10.3\patch_cie660\profiles\default\sysext_manifest_classpath -Dweblogic.Name=examplesServer -Djava.security.policy=C:\bea10.3\WLSERV~1.3\server\lib\weblogic.policy -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    java.home : C:\bea10.3\JROCKI~1\jre
    j.class.path : C:\bea10.3\wlserver_10.3\samples\server\examples\build\serverclasses;C:\bea10.3\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\JROCKI~1\lib\tools.jar;C:\bea10.3\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea10.3\WLSERV~1.3\server\lib\weblogic.jar;C:\bea10.3\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\bea10.3\WLSERV~1.3\server\lib\webservices.jar;C:\bea10.3\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea10.3\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\bea10.3\WLSERV~1.3\common\eval\pointbase\lib\pbembedded57.jar;C:\bea10.3\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\bea10.3\WLSERV~1.3\server\lib\xqrl.jar;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;;
    j.lib.path : C:\bea10.3\JROCKI~1\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea10.3\patch_wlw1030\profiles\default\native;C:\bea10.3\patch_wls1030\profiles\default\native;C:\bea10.3\patch_cie660\profiles\default\native;C:\bea10.3\WLSERV~1.3\server\native\win\32;C:\bea10.3\WLSERV~1.3\server\bin;C:\bea10.3\modules\ORGAPA~1.5\bin;C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\JROCKI~1\bin;C:/Program Files/Java/jre1.6.0_02/bin/client;C:/Program Files/Java/jre1.6.0_02/bin;C:\Program Files\IBM\WebSphere MQ\Java\lib;C:\oracle\product\10.2.0\bin;C:\Program Files\Documentum\Shared;c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\program files\ntru cryptosystems\ntru tcg software stack\bin\;c:\program files\wave systems corp\gemalto\access client\v5\;c:\program files\intel\dmix;c:\program files\intel\wifi\bin\;c:\program files\common files\roxio shared\dllshared\;c:\program files\common files\roxio shared\9.0\dllshared\;c:\program files\utimaco\safeguard easy\;C:\Program Files\Windows Imaging\;c:\program files\java\jdk1.6.0_05\bin;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;C:\Program Files\IBM\WebSphere MQ\bin;C:\Program Files\IBM\WebSphere MQ\tools\c\samples\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Subversion\bin;C:\bea10.3\WLSERV~1.3\server\native\win\32\oci920_8
    JAVA_HOME : C:\bea10.3\JROCKI~1
    JAVAOPTIONS: <not set>
    PATH : C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\patch_wlw1030\profiles\default\native;C:\bea10.3\patch_wls1030\profiles\default\native;C:\bea10.3\patch_cie660\profiles\default\native;C:\bea10.3\WLSERV~1.3\server\native\win\32;C:\bea10.3\WLSERV~1.3\server\bin;C:\bea10.3\modules\ORGAPA~1.5\bin;C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\JROCKI~1\bin;C:/Program Files/Java/jre1.6.0_02/bin/client;C:/Program Files/Java/jre1.6.0_02/bin;C:\Program Files\IBM\WebSphere MQ\Java\lib;C:\oracle\product\10.2.0\bin;C:\Program Files\Documentum\Shared;c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\program files\ntru cryptosystems\ntru tcg software stack\bin\;c:\program files\wave systems corp\gemalto\access client\v5\;c:\program files\intel\dmix;c:\program files\intel\wifi\bin\;c:\program files\common files\roxio shared\dllshared\;c:\program files\common files\roxio shared\9.0\dllshared\;c:\program files\utimaco\safeguard easy\;C:\Program Files\Windows Imaging\;c:\program files\java\jdk1.6.0_05\bin;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;C:\Program Files\IBM\WebSphere MQ\bin;C:\Program Files\IBM\WebSphere MQ\tools\c\samples\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Subversion\bin;C:\bea10.3\WLSERV~1.3\server\native\win\32\oci920_8
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0x319BD1FC / OS context: 0x319BD5F8):
    eax = 2b1cdf58 ecx = 31b647a8 edx = 00000000 ebx = 0000002d
    esp = 319bd8c4 ebp = 31b66400 esi = 00000000 edi = 00000001
    es = 00000023 cs = 0000001b ss = 00000023 ds = 00000023
    fs = 0000003b gs = 00000000
    eip = 00466f21 eflags = 00010202
    Stack:
    (* marks the word pointed to by the stack pointer)
    319bd8c4: 319bda40* 28ac5bdc 2d61e1c4 31b636f8 0000002c 31b66590
    319bd8dc: 00000000 00000001 00000001 00000001 31b66588 00000000
    319bd8f4: 0000002c 00000000 00000005 31b647a8 2d61e1c4 2d630700
    319bd90c: 00001df5 00462f77 28ac5bdc 31b636f8 319bdec8 319bdf04
    Code:
    (* marks the word pointed to by the instruction pointer)
    00466ef0: 08c8448d 28244489 89f8048d 8b142444 431c2444 c085f633
    00466f08: 00f9860f ff8b0000 54244c8b 8b34518b 4c8bb204 518b3c24
    00466f20: f20c8b2c* 1824548b 8bca0c8d 89142454 8b38244c 8928244c
    00466f38: 5489f11c b70f04f1 00014e88 b8b70f00 0000014a 44c7f92b
    Loaded modules:
    (* denotes the module causing the exception)
    00400000-00410fff C:\bea10.3\JROCKI~1\bin\java.exe
    7c900000-7c9b1fff C:\WINDOWS\system32\ntdll.dll
    7c800000-7c8f5fff C:\WINDOWS\system32\kernel32.dll
    77dd0000-77e6afff C:\WINDOWS\system32\ADVAPI32.dll
    77e70000-77f01fff C:\WINDOWS\system32\RPCRT4.dll
    77fe0000-77ff0fff C:\WINDOWS\system32\Secur32.dll
    77c10000-77c67fff C:\WINDOWS\system32\MSVCRT.dll
    7c340000-7c395fff C:\bea10.3\JROCKI~1\jre\bin\msvcr71.dll
    00420000-006c3fff *C:\bea10.3\JROCKI~1\jre\bin\jrockit\jvm.dll
    76b40000-76b6cfff C:\WINDOWS\system32\WINMM.dll
    77f10000-77f58fff C:\WINDOWS\system32\GDI32.dll
    7e410000-7e4a0fff C:\WINDOWS\system32\USER32.dll
    71ab0000-71ac6fff C:\WINDOWS\system32\WS2_32.dll
    71aa0000-71aa7fff C:\WINDOWS\system32\WS2HELP.dll
    76390000-763acfff C:\WINDOWS\system32\IMM32.DLL
    6d820000-6d82bfff C:\bea10.3\JROCKI~1\jre\bin\verify.dll
    6d3c0000-6d3defff C:\bea10.3\JROCKI~1\jre\bin\java.dll
    6d320000-6d327fff C:\bea10.3\JROCKI~1\jre\bin\hpi.dll
    6d860000-6d86efff C:\bea10.3\jrockit_160_05\jre\bin\zip.dll
    6d570000-6d578fff C:\bea10.3\jrockit_160_05\jre\bin\management.dll
    6d620000-6d632fff C:\bea10.3\jrockit_160_05\jre\bin\net.dll
    237a0000-237cffff C:\Program Files\F-Secure\FSPS\program\FSLSP.DLL
    237d0000-237e6fff c:\program files\f-secure\scanner-interface\fsgkiapi.dll
    71a50000-71a8efff C:\WINDOWS\system32\mswsock.dll
    662b0000-66307fff C:\WINDOWS\system32\hnetcfg.dll
    71a90000-71a97fff C:\WINDOWS\System32\wshtcpip.dll
    23ca0000-23cc6fff C:\WINDOWS\system32\DNSAPI.dll
    23cd0000-23cd7fff C:\WINDOWS\System32\winrnr.dll
    23ce0000-23d0bfff C:\WINDOWS\system32\WLDAP32.dll
    23d60000-23d65fff C:\WINDOWS\system32\rasadhlp.dll
    6d640000-6d648fff C:\bea10.3\jrockit_160_05\jre\bin\nio.dll
    68000000-68035fff C:\WINDOWS\system32\rsaenh.dll
    769c0000-76a73fff C:\WINDOWS\system32\USERENV.dll
    5b860000-5b8b4fff C:\WINDOWS\system32\netapi32.dll
    25c20000-25c2afff C:\bea10.3\jrockit_160_05\jre\bin\jmapi.dll
    25e30000-25e3dfff C:\bea10.3\wlserver_10.3\server\native\win\32\wlfileio2.dll
    26120000-26138fff C:\WINDOWS\system32\iphlpapi.dll
    26150000-26167fff C:\WINDOWS\system32\MPRAPI.dll
    77cc0000-77cf1fff C:\WINDOWS\system32\ACTIVEDS.dll
    26170000-26194fff C:\WINDOWS\system32\adsldpc.dll
    76b20000-76b30fff C:\WINDOWS\system32\ATL.DLL
    774e0000-7761cfff C:\WINDOWS\system32\ole32.dll
    261a0000-2622afff C:\WINDOWS\system32\OLEAUT32.dll
    26230000-2623dfff C:\WINDOWS\system32\rtutils.dll
    71bf0000-71c02fff C:\WINDOWS\system32\SAMLIB.dll
    77920000-77a12fff C:\WINDOWS\system32\SETUPAPI.dll
    26280000-26284fff C:\bea10.3\wlserver_10.3\server\native\win\32\wlntio.dll
    6d800000-6d807fff C:\bea10.3\jrockit_160_05\jre\bin\sunmscapi.dll
    77a80000-77b14fff C:\WINDOWS\system32\CRYPT32.dll
    77b20000-77b31fff C:\WINDOWS\system32\MSASN1.dll
    76bf0000-76bfafff C:\WINDOWS\system32\psapi.dll
    6d7c0000-6d7c5fff C:\bea10.3\jrockit_160_05\jre\bin\rmi.dll
    31c20000-31d32fff C:\bea10.3\JROCKI~1\jre\bin\dbghelp.dll
    "[ACTIVE] ExecuteThread: '18' fo" id=54 idx=0xc8 tid=5456 lastJavaFrame=0x319BDEF4
    Stack 0: start=0x31980000, end=0x319C0000, guards=0x31983000 (ok), forbidden=0x31981000
    Thread Stack Trace:
    at dtCreateDTable+1025(dispatchtables.c:298+7)@0x00466F21
    at defineClass+167(defineclass.c:110+7)@0x00462F77
    at lib_define_class+34(library.c:516+16)@0x005164C2
    at libDefineClass+39(library.c:576+38)@0x00516707
    at libDefineClass2+58(library.c:597+34)@0x0051685A
    at JVM_DefineClassWithSource+43(jvmclass.c:59+43)@0x004E609B
    at Javajava_lang_ClassLoader_defineClass1@32+235()@0x6D3C15DA
    -- Java stack --
    at java/lang/ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;(Native Method)
        at java/lang/ClassLoader.defineClass(ClassLoader.java:620)
        at java/security/SecureClassLoader.defineClass(SecureClassLoader.java:124)
        at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:335)
        at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
        ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at java/lang/ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;(Native Method)
        at java/lang/ClassLoader.defineClass(ClassLoader.java:620)
        at java/security/SecureClassLoader.defineClass(SecureClassLoader.java:124)
        at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:335)
        at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
        ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[biased lock]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Classes.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName(Class.java:247)
    at sun/reflect/generics/factory/CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:107)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/annotation/AnnotationParser.parseSig(AnnotationParser.java:370)
    at sun/reflect/annotation/AnnotationParser.parseClassValue(AnnotationParser.java:351)
    at sun/reflect/annotation/AnnotationParser.parseMemberValue(AnnotationParser.java:280)
    at sun/reflect/annotation/AnnotationParser.parseAnnotation(AnnotationParser.java:222)
    at sun/reflect/annotation/AnnotationParser.parseAnnotations2(AnnotationParser.java:69)
    at sun/reflect/annotation/AnnotationParser.parseAnnotations(AnnotationParser.java:52)
    at java/lang/reflect/Field.declaredAnnotations(Field.java:1016)
    ^-- Holding lock: java/lang/reflect/Field@0x032BFE90[biased lock]
    at java/lang/reflect/Field.getDeclaredAnnotations(Field.java:1009)
    at java/lang/reflect/AccessibleObject.getAnnotations(AccessibleObject.java:175)
    at org/apache/openjpa/lib/util/J2DoPriv5Helper$1.run(J2DoPriv5Helper.java:51)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:233)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:241)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.annotated(PersistenceMetaDataDefaults.java:293)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:262)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:269)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:250)
    at org/apache/openjpa/meta/AbstractMetaDataDefaults.populate(AbstractMetaDataDefaults.java:155)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.populate(PersistenceMetaDataDefaults.java:227)
    at org/apache/openjpa/meta/MetaDataRepository.addMetaData(MetaDataRepository.java:794)
    at org/apache/openjpa/meta/MetaDataRepository.addMetaData(MetaDataRepository.java:780)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.getMetaData(AnnotationPersistenceMetaDataParser.java:657)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.parseClassAnnotations(AnnotationPersistenceMetaDataParser.java:480)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.parse(AnnotationPersistenceMetaDataParser.java:352)
    at org/apache/openjpa/persistence/PersistenceMetaDataFactory.load(PersistenceMetaDataFactory.java:229)
    at org/apache/openjpa/meta/MetaDataRepository.getMetaDataInternal(MetaDataRepository.java:474)
    at org/apache/openjpa/meta/MetaDataRepository.getMetaData(MetaDataRepository.java:294)
    ^-- Holding lock: org/apache/openjpa/meta/MetaDataRepository@0x0E7FCDF0[biased lock]
    at org/apache/openjpa/enhance/PCEnhancer.<init>(PCEnhancer.java:248)
    at org/apache/openjpa/enhance/PCEnhancer.<init>(PCEnhancer.java:219)
    at org/apache/openjpa/enhance/PCClassFileTransformer.transform0(PCClassFileTransformer.java:139)
    at org/apache/openjpa/enhance/PCClassFileTransformer.transform(PCClassFileTransformer.java:120)
    at org/apache/openjpa/persistence/PersistenceProviderImpl$ClassTransformerImpl.transform(PersistenceProviderImpl.java:210)
    at weblogic/deployment/PersistenceUnitInfoImpl$ClassPreProcessorImpl.preProcess(PersistenceUnitInfoImpl.java:497)
    at weblogic/utils/classloaders/ClassPreProcessor$ClassPreProcessorSupport.preProcess(ClassPreProcessor.java:95)
    at weblogic/utils/classloaders/GenericClassLoader.doPreProcess(GenericClassLoader.java:348)
    at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:329)
    at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[biased lock]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Classes.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName(Class.java:247)
    at sun/reflect/generics/factory/CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:107)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/generics/visitor/Reifier.reifyTypeArguments(Reifier.java:50)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:120)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/generics/repository/MethodRepository.getReturnType(MethodRepository.java:50)
    at java/lang/reflect/Method.getGenericReturnType(Method.java:236)
    at java/lang/reflect/Method.toGenericString(Method.java:482)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.setMethod(EjbCodeGenerator.java:3511)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.remote_interface_methods(EjbCodeGenerator.java:2698)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.remote_business_interface_methods(EjbCodeGenerator.java:2685)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at weblogic/utils/compiler/CodeGenerator.processAt(CodeGenerator.java:688)
        at weblogic/utils/compiler/CodeGenerator.parse(CodeGenerator.java:582)
        at weblogic/utils/compiler/CodeGenerator.parse(CodeGenerator.java:539)
        at weblogic/utils/compiler/CodeGenerator.generateCode(CodeGenerator.java:341)
        at weblogic/utils/compiler/CodeGenerator.generate(CodeGenerator.java:242)
        at weblogic/utils/compiler/CodeGenerator.generate(CodeGenerator.java:197)
        at weblogic/ejb/container/ejbc/EJBCompiler.generateSourcesFromBeanInfo(EJBCompiler.java:1019)
        at weblogic/ejb/container/ejbc/EJBCompiler.doCompile(EJBCompiler.java:299)
        at weblogic/ejb/container/ejbc/EJBCompiler.compileEJB(EJBCompiler.java:552)
        at weblogic/ejb/container/ejbc/EJBCompiler.compileEJB(EJBCompiler.java:519)
        at weblogic/ejb/container/deployer/EJBDeployer.runEJBC(EJBDeployer.java:393)
        at weblogic/ejb/container/deployer/EJBDeployer.compileJar(EJBDeployer.java:715)
        at weblogic/ejb/container/deployer/EJBDeployer.compileIfNecessary(EJBDeployer.java:618)
        at weblogic/ejb/container/deployer/EJBDeployer.prepare(EJBDeployer.java:1154)
        at weblogic/ejb/container/deployer/EJBModule.prepare(EJBModule.java:425)
    Stopping PointBase server...
    PointBase server stopped.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                &n

    Looks like a JVM crash during classloading. Have no idea what might cause it. I suggest you try upgrading to a more recent JRockit version (google for "download jrockit" and get the latest JRMC version you can find, it includes JRockit R27.6.5). If that doesn't help, open a ticket with Oracle Support and provide the text dump and the minidump for analysis.
    Henrik

Maybe you are looking for

  • How do I use face time to work with Skype users?

    How do I use facetime to teleconferfence with skype users ? or do I need a skype account ?

  • Where is the reader button in safari OS7

    I can't find the reader button in the new updated safari for OS7. It made reading newspaper articles so easy. The adds were eliminated and the article text was enlarged. The reader button was in the old address bar in many pages such as the NY Times.

  • PDFMaker failing Acrobat=7 XPpro Office=2003

    Something happened yesterday and I am left with 2 of 3 ways to make a PDF file no longer working. Was working, now not working. But with auto updates running who can tell if it was the OS, Adobe, or Office that dropped the ball. Symptoms: A) I can no

  • F-54 Addition new column

    Hi everybody! Please tell me haw can I add new collumn(Document date-BLDAT) in standart tranzaction f-54. Button Configuration - screen "Edit system setting"don't has the field BLDAT. Menu->Setting->Line layout in tranzaction F-54 not available that

  • Some Songs Cut Out

    Some random songs will cut off when playing back from my iTouch...when the same song will play completely OK from the computer's iTunes. I have wiped the iTouch completely and re-sync'ed it, but i still have the same problem. Am I alone in this issue