Csadmind[1768]: General Error: caldb: Failed in deadlock detect, err=-8

Hi,
Our Calendar server, 5.1 hotfix 8, is failing to start. Host OS is WinNT 5.0 sp4 (aka Win2000 sp4). This server has been functioning well for over a year. The error message in the admin.log is "csadmind[1768]: General Error: caldb: Failed in deadlock detect, err=-8" that seems relavant as to why the service will not start.
How may this problem be resolved? Searching SunSolve is no help. I'll be logging a case on this.
Thanks.
William Bayer.
[email protected]

Hi William,
Did you ever get this resolved? I have the same problem, albeit in a Solaris environment.
Regards,
Mike.

Similar Messages

  • Caldb damaged 2 - csadmind[4606]: General Error: caldb: Error with calendar

    More information
    [07/Sep/2005:16:22:16 +0700] csadmind[4606]: General Error: caldb: Error with calendar database: PANIC: fatal region error detected; run recovery
    [07/Sep/2005:16:22:16 +0700] csadmind[4606]: General Critical: caldb: Failed to checkpoint database, err=-30978
    [07/Sep/2005:16:22:16 +0700] csadmind[4606]: General Error: caldb: Error with calendar database: PANIC: fatal region error detected; run recovery
    [07/Sep/2005:16:22:16 +0700] csadmind[4606]: General Error: caldb: Failed in deadlock detect, err=-30978
    Please help and if somebody know the cause, please tell me. Thanks

    Have a read of the Troubleshooting chapter, esp the section dealing with database issues at http://docs.sun.com/source/819-0024/csagTroubleshooting.html#wp35136

  • Calendar Server 6.3 reminders - General Error: caldb: PR_GetHostByName fail

    Hello.
    Event Notification Server is not working on my old Calendar Server 6.3*. I'm getting a lot of errors like these every second:
    [29/Jan/2013:14:40:53 +0100] calendar1 csnotifyd[28556]: General Error: caldb: PR_GetHostByName failed
    Any thoughts?
    Thank you very much.
    *Sun Java(tm) System Calendar Server 6.3-20.01 (built Oct 23 2009)
    SunOS calendar1 5.10 Generic_137112-03 i86pc i386 i86pc

    Hi,
    This could indicate a network or DNS problem. Has something recently changed in the deployment environment?
    Other things to check:
    Any errors in the other logs? (admin log, watcher log, etc.)
    Are all Calendar processes running?
    Has anything crashed and/or left a core file?
    Have you tried stopping and restarting the server?
    See the following documentation for additional troubleshooting and information on what data to gather in the event you need to open a Support Request:
    Calendar Server 6.3 Administration Guide - Chapter 22 Troubleshooting Calendar Server 6.3 Software
    http://docs.oracle.com/cd/E19566-01/819-4654/acals/index.html
    Gathering Debug Data for Sun Java System Calendar Server
    http://docs.oracle.com/cd/E19305-01/820-0374/6nc4ajmc2/index.html
    -Deb

  • Ims_master[PID]: General Error: immd_recipient_disposition failed: error

    I am receiving the following error in my imta log:
    ims_master[PID]: General Error: immd_recipient_disposition failed: Illegal or corrupt context value
    We are running the following version:
    Sun Java(tm) System Messaging Server 6.3-11.01 (built Feb 12 2010; 32bit)
    libimta.so 6.3-11.01 (built 13:48:39, Feb 12 2010; 32bit)
    Linux 2.6.9-89.33.1.ELsmp #1 SMP Mon Nov 15 19:02:30 EST 2010 x86_64 x86_64 x86_64 GNU/Linux
    on RedHat Linux:
    Red Hat Enterprise Linux AS release 4 (Nahant Update 8)
    Googling this error or searching this forum yields no results at all
    Any insight would be greatly appreciated !
    Edited by: user12094244 on Jun 17, 2011 4:07 PM

    This will probably require enabling debug on the ims-ms channel and correlation to other log files to figure out what recipient this is happening to and whether it is all messages for that recipient or random. You should probably open a support case.

  • Supplement​ary Service error: general error/ Call failed

    Hi, guys please help, am very frustrated as I am not able to make or receive any calls or sms's. Everytime I try, i receive an immediate message saying " supplementary service error. or "call failed". When everybody else calls me it goes straight to voicemail.  
    I tried the battery pull, I did the security wipe, I called the service provider, nothing seems to work. has any of you ever experienced this? what did you do? please advice. 
    Under "manage connections" on the main menu, i checked the "service status" and it says not connected under "mobile voice". Other applications work very well, such as facebook, whatsapp, bbm and google talk. 

    Hi Makhasane
    Welcome to BlackBerry Support Forums
                              There are no specific  workaround regarding this error but From what I have noticed  in most cases this " supplementary Service error " is resolved after replacing a new SIM , So I prefer you should try that option Or if your device is still under warranty contact your service provider.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Trigger error -deadlock detected while waiting for resource

    with table1 as (
    select '1' no,'1' id, 'N' flag,'' result from dual union all
    select '2' no,'1' id, 'N' flag,'B' result from dual union all
    select '3' no,'1' id, '' flag,'B' result from dual union all
    select '4' no,'2' id, 'N' flag,'B' result from dual union all
    select '5' no,'2' id, 'N' flag,'B' result from dual
    select * from table1
    I need to write a trigger with the condition that if Flag is set to 'Y', then all the values for the field 'result' for that particular ID should set a 'A'.
    For the above table if I run the below query
    update table1
    set flag= 'Y' where no =1
    The trigger result should be
    with table1 as (
    select '1' no,'1' id, 'Y' flag,'A' result from dual union all
    select '2' no,'1' id, 'N' flag,'A' result from dual union all
    select '3' no,'1' id, '' flag,'A' result from dual union all
    select '4' no,'2' id, 'N' flag,'B' result from dual union all
    select '5' no,'2' id, 'N' flag,'B' result from dual
    select * from table1
    I wrote the trigger as below...
    CREATE OR REPLACE TRIGGER test
    BEFORE UPDATE
    ON table1 for each row
    DECLARE
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    if :new.flag = 'Y' then
    update table1
    set result = 'A'
    where id = :new.id ;
    commit;
    end if;
    end;
    but giving follwing error.
    ORA-00060: deadlock detected while waiting for resource
    ORA-06512: at "test"
    ORA-04088: error during execution of trigger 'test'
    Please help to correct my trigger.

    # Firstly you cannot define trigger using on subquery clause - WITH. e.g. table1.
    # You might have used a trick to use PRAGMA AUTONOMOUS TRANSACTION to isolate trigger transaction from the main transaction but the deadlock will certainly going to occur as the main transaction already hold the row level lock which you are trying to update in trigger code.
    # We will try to use common technique to capture all the ID whose flag is set as 'Y' in row level trigger and then in statement level trigger after update will update the column - "resut" for the ID.
    This is very simple test code for demonostration.
    CREATE TABLE T
      NO      NUMBER,
      ID      NUMBER,
      FLAG    VARCHAR2(1),
      RESULT  VARCHAR2(1)
    INSERT INTO  T VALUES (1,1,'N',NULL);
    INSERT INTO  T VALUES (2,1,'N','B');
    INSERT INTO  T VALUES (3,1,'','B');
    INSERT INTO  T VALUES (4,2,'N','B');
    INSERT INTO  T VALUES (5,2,'N','B');
    CREATE OR REPLACE PACKAGE PKG_T_MUTATING AS
    TYPE IDTABTYPE IS TABLE OF T.ID%TYPE;
    T_ID IDTABTYPE := IDTABTYPE();
    PROCEDURE GET_UPDATE_ID(P_ID T.ID%TYPE);
    PROCEDURE UPD_T;
    END PKG_T_MUTATING;
    CREATE OR REPLACE PACKAGE BODY PKG_T_MUTATING AS
    PROCEDURE GET_UPDATE_ID(P_ID T.ID%TYPE) IS
    BEGIN
      T_ID.EXTEND;
      T_ID(T_ID.COUNT) := P_ID;
      DBMS_OUTPUT.PUT_LINE('T_ID ' || T_ID(T_ID.COUNT));
    END GET_UPDATE_ID;
    PROCEDURE UPD_T IS
    V_ID PKG_T_MUTATING.IDTABTYPE := PKG_T_MUTATING.IDTABTYPE();
    BEGIN
    V_ID := V_ID MULTISET UNION DISTINCT T_ID;
    IF V_ID.COUNT > 0  THEN
      FORALL i IN 1..V_ID.COUNT
       UPDATE T SET RESULT = 'A'
       WHERE ID = V_ID(i);
    END IF;
    -- Cleanup
    V_ID.DELETE;
    T_ID.DELETE;
    EXCEPTION
      WHEN OTHERS THEN
        DBMS_OUTPUT.PUT_LINE(DBMS_UTILITY.FORMAT_ERROR_STACK);
    END UPD_T;
    END PKG_T_MUTATING;
    CREATE OR REPLACE TRIGGER TRG_TEST_BU
    BEFORE UPDATE OF FLAG ON T FOR EACH ROW
    WHEN (NEW.FLAG = 'Y')
    BEGIN
    pkg_t_mutating.get_update_id(:NEW.ID);
    END;
    CREATE OR REPLACE TRIGGER TRG_TEST_AU
    AFTER UPDATE OF FLAG ON T
    BEGIN
    PKG_T_MUTATING.UPD_T;
    END;
    SQL>SELECT * FROM T;
            NO         ID FLAG       RESULT
             1          1 Y          A
             2          1 N          B
             3          1            B
             4          2 N          B
             5          2 N          B
    SQL>UPDATE T SET FLAG = 'Y' WHERE NO = 1 AND ID = 1;
    1 row updated.
    SQL>SELECT * FROM T;
            NO         ID FLAG       RESULT
             1          1 Y          A
             2          1 N          A
             3          1            A
             4          2 N          B
             5          2 N          B
    SQL>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • ORA-00060: Deadlock detected

    I getting error as "ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/.................". Following are my observations on the occurence of this error.
    The deadlock is encountered first time when trying to login to applications. I have R12 vision instance on linux.
    Following the content of the alert_VIS.log file
    Mon Jun 15 04:41:41 2009
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as /d01/oracle/VIS/db/tech_st/10.2.0/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =44
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.3.0.
    System parameters with non-default values:
    tracefiles_public = TRUE
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    shared_pool_size = 419430400
    shared_pool_reserved_size= 41943040
    nls_language = american
    nls_territory = america
    nls_sort = binary
    nls_date_format = DD-MON-RR
    nls_numeric_characters = .,
    nls_comp = binary
    nls_length_semantics = BYTE
    sga_target = 1073741824
    control_files = /d01/oracle/VIS/db/apps_st/data/cntrl01.dbf, /d01/oracle/VIS/db/apps_st/data/cntrl02.dbf, /d01/oracle/VIS/db/apps_st/data/cntrl03.dbf
    db_block_checksum = TRUE
    db_block_size = 8192
    compatible = 10.2.0
    log_buffer = 14251008
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = AUTO
    undo_tablespace = APPS_UNDOTS1
    db_block_checking = FALSE
    O7_DICTIONARY_ACCESSIBILITY= FALSE
    session_cached_cursors = 500
    utl_file_dir = /usr/tmp, /usr/tmp, /d01/oracle/VIS/db/tech_st/10.2.0/appsutil/outbound/VIS_oracleebsr12, /usr/tmp
    plsql_native_library_dir = /d01/oracle/VIS/db/tech_st/10.2.0/plsql/nativelib
    plsql_native_library_subdir_count= 149
    plsql_code_type = native
    plsql_optimize_level = 2
    job_queue_processes = 2
    systemtrig_enabled = TRUE
    cursor_sharing = EXACT
    parallel_min_servers = 0
    parallel_max_servers = 8
    background_dump_dest = /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump
    user_dump_dest = /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump
    max_dump_file_size = 20480
    core_dump_dest = /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/cdump
    db_name = VIS
    open_cursors = 600
    ifile = /d01/oracle/VIS/db/tech_st/10.2.0/dbs/VIS_oracleebsr12_ifile.ora
    sortelimination_cost_ratio= 5
    btree_bitmap_plans = FALSE
    fastfull_scan_enabled = FALSE
    sqlexecprogression_cost= 2147483647
    likewith_bind_as_equality= TRUE
    pga_aggregate_target = 1073741824
    workarea_size_policy = AUTO
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4194304
    Mon Jun 15 04:42:05 2009
    WARNING:Oracle instance running on a system with low open file descriptor
    limit. Tune your system to increase this limit to avoid
    severe performance degradation.
    PSP0 started with pid=3, OS id=6824
    PMON started with pid=2, OS id=6822
    MMAN started with pid=4, OS id=6826
    DBW0 started with pid=5, OS id=6828
    CKPT started with pid=7, OS id=6832
    SMON started with pid=8, OS id=6834
    RECO started with pid=9, OS id=6836
    CJQ0 started with pid=10, OS id=6838
    LGWR started with pid=6, OS id=6830
    MMON started with pid=11, OS id=6840
    MMNL started with pid=12, OS id=6842
    Mon Jun 15 04:42:19 2009
    ALTER DATABASE MOUNT
    Mon Jun 15 04:42:25 2009
    Setting recovery target incarnation to 2
    Mon Jun 15 04:42:27 2009
    Successful mount of redo thread 1, with mount id 243370348
    Mon Jun 15 04:42:27 2009
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Mon Jun 15 04:42:28 2009
    ALTER DATABASE OPEN
    Mon Jun 15 04:42:48 2009
    Thread 1 opened at log sequence 16
    Current log# 3 seq# 16 mem# 0: /d01/oracle/VIS/db/apps_st/data/log3.dbf
    Successful open of redo thread 1
    Mon Jun 15 04:42:48 2009
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Mon Jun 15 04:42:48 2009
    SMON: enabling cache recovery
    Mon Jun 15 04:42:48 2009
    Incremental checkpoint up to RBA [0x10.a779.0], current log tail at RBA [0x10.a779.0]
    Mon Jun 15 04:43:01 2009
    Successfully onlined Undo Tablespace 18.
    Mon Jun 15 04:43:01 2009
    SMON: enabling tx recovery
    Mon Jun 15 04:43:04 2009
    Database Characterset is UTF8
    Mon Jun 15 04:43:18 2009
    replication_dependency_tracking turned off (no async multimaster replication found)
    Mon Jun 15 04:43:44 2009
    Starting background process QMNC
    QMNC started with pid=14, OS id=6884
    Mon Jun 15 04:46:48 2009
    Completed: ALTER DATABASE OPEN
    Mon Jun 15 05:03:23 2009
    Incremental checkpoint up to RBA [0x10.b1bd.0], current log tail at RBA [0x10.b1f3.0]
    Mon Jun 15 05:23:33 2009
    Incremental checkpoint up to RBA [0x10.b5b3.0], current log tail at RBA [0x10.b5c2.0]
    Mon Jun 15 05:45:12 2009
    Incremental checkpoint up to RBA [0x10.b7b0.0], current log tail at RBA [0x10.fbce.0]
    This is upto the point where all DB and application services has been started.
    Once trying to login to applications following content got appended to the log file
    Mon Jun 15 05:53:39 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:53:51 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:54:02 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:54:12 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:54:22 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:54:28 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:54:35 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:54:42 2009
    ORA-00060: Deadlock detected. More info in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/udump/vis_ora_8149.trc.
    Mon Jun 15 05:59:06 2009
    Process J000 died, see its trace file
    Mon Jun 15 05:59:11 2009
    kkjcre1p: unable to spawn jobq slave process
    Mon Jun 15 05:59:11 2009
    Errors in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6838.trc:
    Mon Jun 15 05:59:23 2009
    Process J000 died, see its trace file
    Mon Jun 15 05:59:24 2009
    kkjcre1p: unable to spawn jobq slave process
    Mon Jun 15 05:59:24 2009
    Errors in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6838.trc:
    Mon Jun 15 05:59:50 2009
    Process J000 died, see its trace file
    Mon Jun 15 05:59:50 2009
    kkjcre1p: unable to spawn jobq slave process
    Mon Jun 15 05:59:50 2009
    Errors in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6838.trc:
    I did the TKPROF on .trc files but the tkprof file does not show any details as such except similar to :- (don't know if I am missing anything while issuing TKPROF as $ tkprof filename.trc
    filename.txt explain=apps/apps)
    TKPROF: Release 10.2.0.3.0 - Production on Mon Jun 15 06:07:14 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Trace file: /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6838.trc
    Sort options: default
    count = number of times OCI procedure was executed
    cpu = cpu time in seconds executing
    elapsed = elapsed time in seconds executing
    disk = number of physical reads of buffers from disk
    query = number of buffers gotten for consistent read
    current = number of buffers gotten in current mode (usually for update)
    rows = number of rows processed by the fetch or execute call
    0 statements EXPLAINed in this session.
    Trace file: /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6838.trc
    Trace file compatibility: 10.01.00
    Sort options: default
    1 session in tracefile.
    0 user SQL statements in trace file.
    0 internal SQL statements in trace file.
    0 SQL statements in trace file.
    0 unique SQL statements in trace file.
    22 lines in trace file.
    0 elapsed seconds in trace file.
    Yesterday, I did login to applications after multiple attempts and tried submitting a concurrent request of a standard report (after resolving the data block corrupt issue) and got the same ORA-00060 Error.
    I have a fresh VISION R12 (12.0.4) installed without any customizations. My installation looks to be quite unstable, takes 2-3 attempts for successful login to apps.
    Can you please give any clues on this and how to overcome the problem?
    Thanks,
    Amit

    I have run cmclean.sql as per :- Re: R12 Vision install - Unable to submit concurrent request
    This is the only change made. No new patches etc. Before running cmclean.sql I believe the instance was working fine.
    Now everytime I start the application services, its causing ORA=00060: Deadlock error. There are no issues with just DB services up and running.
    And after apps services up, when trying to Login to apps it just hangs, get error as follows:
    Tue Jun 23 02:04:55 2009
    Process J001 died, see its trace file
    Tue Jun 23 02:04:55 2009
    kkjcre1p: unable to spawn jobq slave process
    Tue Jun 23 02:04:55 2009
    Errors in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6747.trc:
    Tue Jun 23 02:05:04 2009
    Process q002 died, see its trace file
    Tue Jun 23 02:05:04 2009
    ksvcreate: Process(q002) creation failed
    Tue Jun 23 02:05:55 2009
    Process J000 died, see its trace file
    Tue Jun 23 02:05:55 2009
    kkjcre1p: unable to spawn jobq slave process
    Tue Jun 23 02:05:55 2009
    Errors in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6747.trc:
    Tue Jun 23 02:06:11 2009
    Process J000 died, see its trace file
    Tue Jun 23 02:06:11 2009
    kkjcre1p: unable to spawn jobq slave process
    Tue Jun 23 02:06:11 2009
    Errors in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6747.trc:
    Tue Jun 23 02:08:51 2009
    Process J000 died, see its trace file
    Tue Jun 23 02:08:52 2009
    kkjcre1p: unable to spawn jobq slave process
    Tue Jun 23 02:08:52 2009
    Errors in file /d01/oracle/VIS/db/tech_st/10.2.0/admin/VIS_oracleebsr12/bdump/vis_cjq0_6747.trc:
    The OS also hangs (Linux) and I have to exit abnormally everytime which is frustrating.
    I am not sure the reason for the same. I have gone through the metalink notes pointed which says to install the health check engine.
    Do you have any clues based on above information as to what might be causing this problem.
    I have 4 GB RAM installed on my Windows and 2 GB has been allocated to Linux on VMware.
    Please let me know if I need to upgrade the memory.
    Any pointers would be really helpful.
    Thanks,
    Amit

  • Filesystem Restore is getting failed "NDMP server reported a general error"

    When i performing filesystem restore to different location, its getting failed with the error message "NDMP server reported a general error (name not found?)" whereas restoring
    in the same location is getting success without any error.
    Please find the attached transcript output for the failed job with debug on.
    ob>catxcr -fl0 admin/80
    2012/09/04.13:17:33 ______________________________________________________________________
    2012/09/04.13:17:33
    2012/09/04.13:17:33 Transcript for job admin/80 running on backup-server
    2012/09/04.13:17:33
    2012/09/04.13:17:33 (amh) qdv__automount_in_mh entered
    2012/09/04.13:17:33 (amh) qdv__automount_in_mh tape at 2012/09/04.13:17:33, flags 0x100
    2012/09/04.13:17:33 (amh) mount volume options list contains:
    2012/09/04.13:17:33 (amh) vtype 1 (rd), vid DC-ORCL-MF-000001, vs_create 1346566310, family (null), retain (null), size 0,
    mediainfo 2, scratch 0
    2012/09/04.13:17:34 (amh) don't preserve previous mh automount state
    2012/09/04.13:17:34 (gep) getting reservation for element 0x1 (dte)
    2012/09/04.13:17:34 (una) unload_anywhere entered
    2012/09/04.13:17:34 (fal) find_and_load entered
    2012/09/04.13:17:34 (fal) calling find_vid2 for volume DC-ORCL-MF-000001
    2012/09/04.13:17:34 (fal) find_vid2 worked - volume DC-ORCL-MF-000001 in se11 (not in drive)
    2012/09/04.13:17:34 (fal) moving volume FL-MF-000001 from se11 to dte1 (tape)
    2012/09/04.13:18:12 (fal) load of tape worked; returning to do automount
    2012/09/04.13:18:12 (fal) find_and_load exited
    2012/09/04.13:18:12 (atv) qdv__automount_this_vol entered
    2012/09/04.13:18:12 (atv) calling qdv__mount
    2012/09/04.13:18:12 (mt) qdv__read_mount_db() succeeded, found vol_oid 0
    2012/09/04.13:18:20 (mt) qdv__read_label() succeeded; read 65536 bytes
    2012/09/04.13:18:20 (mt) exp time obtained from label
    2012/09/04.13:18:20 (mt) qdb__label_event() returned vol_oid 137
    2012/09/04.13:18:20 (mt) setting vol_oid in mount_info to 137
    2012/09/04.13:18:20 (mt) updated volume close time from db
    2012/09/04.13:18:20 (atv) qdv__mount succeeded
    2012/09/04.13:18:20 (atv) automount worked
    2012/09/04.13:18:20 (atv) qdv__automount_this_vol exited
    2012/09/04.13:18:20 (gep) getting reservation for element 0x1 (dte)
    2012/09/04.13:18:20 (amh) 0 automount worked - returning
    2012/09/04.13:18:20 (amh) end of automount at 2012/09/04.13:18:20 (0x0)
    2012/09/04.13:18:20 (amh) returning from qdv__automount_in_mh
    2012/09/04.13:18:20 Info: volume in tape is usable for this operation.
    13:18:20 OBTR: obtar version 10.4.0.1.0 (Solaris) -- Fri Sep 23 23:41:16 PDT 2011
    Copyright (c) 1992, 2011, Oracle. All rights reserved.
    13:18:20 OBTR: obtar -Xjob:admin/80 -Xob:10.4 -xOz -Xbga:admin/80 -JJJJv -y /usr/tmp/[email protected] -Xrdf:admin/80 -e DC-ORCL-
    MF-000001 -F3 -f tape -Xrescookie:0xBE1A8F2 -H client01 -u
    13:18:20 RRDF: restore "/wdn/file01" as "/restore", pos 000043290003
    13:18:20 OBTR: running as root/root
    13:18:20 OBTR: record storage set to internal memory
    13:18:20 ATAL: reserved drive tape, cookie 0xBE1A8F2
    13:18:20 OBTR: obsd=1, is_job=1, is_priv=0, os=3
    13:18:20 OBTR: rights established for user admin, class admin
    13:18:20 SUUI: user info root/root, ??/??
    13:18:21 MAIN: using blocking factor 128 from media defaults/policies
    13:18:21 STTY: background terminal I/O or is a tty
    13:18:21 MAIN: interactive
    13:18:21 DOLM: nop (for tape (raw device "/dev/obt1"))
    13:18:21 DOLM: ok
    13:18:22 RLE: connecting to volume/archive database host
    13:18:22 RLE: device tape (raw device "/dev/obt1")
    13:18:22 RLE: mount_info is valid
    13:18:22 RLE: qdb__device_spec_se reports vol_oid 0, arch_oid 0
    13:18:22 A_O: using max blocking factor 128 from media defaults/policies
    13:18:22 A_O: tape device is local
    13:18:22 A_O: Devname: HP,Ultrium 4-SCSI,H61W
    13:18:22 Info version: 11
    13:18:22 WS version: 10.4
    13:18:22 Driver version: 10.4
    13:18:22 Max DMA: 2097152
    13:18:22 Blocksize in use: 65536
    13:18:22 Query frequency: 134217728
    13:18:22 Rewind on close: false
    13:18:22 Can compress: true
    13:18:22 Compression enabled: true
    13:18:22 Device supports encryption: true
    13:18:22 8200 media: false
    13:18:22 Remaining tape: 819375104
    13:18:22 A_GB: ar_block at 0x100352000, size=2097152
    13:18:22 A_GB: ar_block_enc at 0x100554000, size=2097152
    13:18:22 ADMS: reset library tape selection state
    13:18:22 ADMS: reset complete
    13:18:22 GLMT: returning "", code = 0x0
    13:18:22 VLBR: from chk_lm_tag: "", code = 0x0
    13:18:22 VLBR: tag on label just read: ""
    13:18:22 VLBR: master tag now ""
    13:18:22 RLE: noticed volume TEST-MF-000001, file 1, section 1, vltime 1346566310, vowner root, voltag
    13:18:22 RLE: qdb__noticed_se reports vol_oid 137, arch_oid 369
    (alv) backup image label is valid, file 1, section 1
    (ial) invalidate backup image label (was valid)
    13:18:22 RSMD: rewrote mount db for tape
    13:18:22 ULVI: set mh db volume id "DC-ORCL-MF-000001" (retid ""), volume oid 137, code 0
    13:18:22 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:18:22 CALE: created backup section oid list entry for oid 369
    13:18:22 PF: here's the label at the current position:
    Volume label:
    Intro time: Fri May 04 13:35:03 2012
    Volume UUID: d40ea6c6-d6c2-102f-bf51-da716418c062
    Volume ID: TEST-MF-000001
    Volume sequence: 1
    Volume set owner: root
    Volume set created: Sun Sep 02 11:56:50 2012
    Volume set closes: Sat Dec 01 11:56:50 2012 (no writes after this time)
    Volume set expires: Sat Mar 02 11:56:50 2013
    Media family: TEST-MF
    Original UUID: d40ea6c6-d6c2-102f-bf51-da716418c062
    Archive label:
    File number: 1
    File section: 1
    Owner: root
    Client host: client01
    Backup level: 0
    S/w compression: no
    Archive created: Sun Sep 02 11:56:50 2012
    Archive owner UUID: f32ac938-6410-102f-a3d5-b94c4468403b
    Owner class UUID: f32a3504-6410-102f-a3d5-b94c4468403b
    Encryption: off
    Searching tape for requested file. Please wait...
    13:18:22 PF: spacing forward 2 FMs
    13:18:24 VLBR: not at bot: 0x90000000
    13:18:24 VLBR: tag on label just read: ""
    13:18:24 VLBR: master tag now ""
    13:18:24 RLE: noticed volume TEST-MF-000001, file 3, section 1, vltime 1346566310, vowner root, voltag
    13:18:24 RLE: qdb__noticed_se reports vol_oid 137, arch_oid 380
    (alv) backup image label is not valid
    13:18:24 ULVI: set mh db volume id "TEST-MF-000001" (retid ""), volume oid 137, code 0
    13:18:24 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:18:24 CALE: created backup section oid list entry for oid 380
    13:18:24 VLBR: setting last section flag for backup section oid 369
    13:18:24 PF: here's the label at the current position:
    Volume label:
    Intro time: Fri May 04 13:35:03 2012
    Volume UUID: d40ea6c6-d6c2-102f-bf51-da716418c062
    Volume ID: TEST-MF-000001
    Volume sequence: 1
    Volume set owner: root
    Volume set created: Sun Sep 02 11:56:50 2012
    Volume set closes: Sat Dec 01 11:56:50 2012 (no writes after this time)
    Volume set expires: Sat Mar 02 11:56:50 2013
    Media family: TEST-MF
    Original UUID: d40ea6c6-d6c2-102f-bf51-da716418c062
    Archive label:
    File number: 3
    File section: 1
    Owner: root
    Client host: client01
    Backup level: 0
    S/w compression: no
    Archive created: Tue Sep 04 11:53:17 2012
    Archive owner UUID: f32ac938-6410-102f-a3d5-b94c4468403b
    Owner class UUID: f32a3504-6410-102f-a3d5-b94c4468403b
    Encryption: off
    13:18:24 PF: at desired location
    13:18:24 ACFD: positioning (SCSI LOCATE) is available for this device
    13:18:24 ADMS: reset library tape selection state
    13:18:24 ADMS: reset complete
    13:18:24 VLBR: not at bot: 0x90000000
    13:18:24 VLBR: tag on label just read: ""
    13:18:24 VLBR: master tag now ""
    13:18:24 RLE: noticed volume DC-ORCL-MF-000001, file 3, section 1, vltime 1346566310, vowner root, voltag
    13:18:24 RLE: qdb__noticed_se reports vol_oid 137, arch_oid 380
    (alv) backup image label is not valid
    13:18:25 ULVI: set mh db volume id "DC-ORCL-MF-000001" (retid ""), volume oid 137, code 0
    13:18:25 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:18:25 CALE: found existing backup section oid list entry for oid 380
    13:18:25 ADMS: reset library tape selection state
    13:18:25 ADMS: reset complete
    13:18:25 RLE: read volume DC-ORCL-MF-000001, file 3, section 1, vltime 1346566310, vowner root, voltag
    13:18:25 RLE: qdb__read_se reports vol_oid 137, arch_oid 380
    (alv) backup image label is not valid
    13:18:25 ULVI: set mh db volume id "DC-ORCL-MF-000001" (retid ""), volume oid 137, code 0
    13:18:25 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:18:25 PTNI: positioning to "/wdn/file01" at 000043290003
    13:18:27 CNPC: data host reports this butype_info:
    13:18:27 CNPC: tar (attr 0x2C78: B_DIRECT, R_DIRECT, B_INCR, R_INCR, B_FH_DIR)
    13:18:27 CNPC: DIRECT = y
    13:18:27 CNPC: HISTORY = y
    13:18:27 CNPC: LEVEL = 0
    13:18:28 SNP: connection types supported by mover -
    13:18:28 tcp
    13:18:28 SNP: connection types supported by data service -
    13:18:28 tcp
    13:18:28 SNP: selected data connection type: tcp
    13:18:28 SNP: using separate data and tape/mover connections
    13:18:28 SNP: the NDMP protocol version for tape/mover is 4, for data is 4
    13:18:28 SNP: backup-server's NDMP tape/mover service session id is 7844
    13:18:28 RONPC: begin OSB NDMP data restore
    13:18:28 RONPC: need to restore from "/wdn/file01" tree:
    13:18:28 RONPC: tape position before restore is 000043290004
    13:18:28 MGS: ms.record_size 65536, ms.record_num 0x0, ms.bytes_moved 0x0
    13:18:28 RONPC: about to start restore; here are the environment variables:
    13:18:28 RONPC: env BEGINTREE=1
    13:18:28 RONPC: env NAME=/wdn/file01
    13:18:28 RONPC: env AS=/restore
    13:18:28 RONPC: env POSLEN=6
    13:18:28 RONPC: env POS=
    13:18:28 RONPC: env BLEVEL=0
    13:18:28 RONPC: env FIRSTCH=1
    13:18:28 RONPC: env POS_HERE=1
    13:18:28 RONPC: env EX2KTYPE=
    13:18:28 RONPC: env DATA_BLOCK_SIZE=64
    13:18:28 RONPC: env SKIP_RECORDS=3
    13:18:28 RONPC: env LABEL_VERSION=0000012
    13:18:28 SMW: setting NDMP mover window to offset 0x0, length 0xFFFFFFFFFFFFFFFF
    13:18:28 MLIS: mover listen ok for tcp connection; these addresses were reported:
    13:18:28 MLIS: 0.0.0.0:58243
    13:18:28 MLIS: 192.168.3.109:58243
    13:18:28 RONPC: tape fileno/blockno before restore are 0/0
    13:18:28 APNI: a preferred network interface does not apply to this connection
    13:18:28 DPNI: load balancing is in use, skipping default PNI
    13:18:28 RONPC: directing data service to connect to mover
    13:18:01 PPVL: obtar option OB_JOB = admin/80
    13:18:01 PPVL: obtar option OB_RB = 10.4
    13:18:01 PPVL: obtar option OB_EXTR = 1
    13:18:01 PPVL: obtar option OB_EXTRACT_ONCE = 1
    13:18:01 PPVL: obtar option OB_DEBUG = 1
    13:18:01 PPVL: obtar option OB_DEBUG = 1
    13:18:01 PPVL: obtar option OB_DEBUG = 1
    13:18:01 PPVL: obtar option OB_DEBUG = 1
    13:18:01 PPVL: obtar option OB_VERBOSE = 1
    13:18:01 PPVL: obtar option OB_CLIENT = client01
    13:18:01 PPVL: obtar option OB_HONOR_IN_USE_LOCK = 1
    13:18:01 PPVL: obtar option OB_STAT = 1
    13:18:01 PPVL: obtar option OB_VOLUME_LABEL = 1
    13:18:01 PPVL: obtar option OB_SKIP_CDFS = 1
    13:18:01 PPVL: obtar option OB_DEVICE = tape
    13:18:01 PPVL: obtar option OB_BLOCKING_FACTOR = 128
    13:18:01 PPVL: obtar option OB_VERIFY_ARCHIVE = no
    13:18:01 PPVL: obtar option OB_PQT = 134217728
    13:18:01 DSIN: 2GB+ files are supported, 2GB+ directories are supported
    13:18:01 SETC: identity is already root/root
    13:18:28 qtarndmp__ssl_setup: SSL has been disabled via the security policy
    13:18:28 RONPC: issuing NDMP_DATA_START_RECOVER
    13:18:33 RONPC: started NDMP restore
    13:18:33 MNPO: received NDMP_NOTIFY_DATA_READ, offset 0x0, length 0xFFFFFFFFFFFFFFFF
    13:18:33 MNPO: sent corresponding NDMP_MOVER_READ
    13:18:33 QTOS: received osb_stats message for job admin/80, kbytes 64, nfiles 0
    13:18:33 await_ndmp_event: sending progress update
    13:18:33 SPU: sending progress update
    Error: Could not make file /restore: Is a directory
    13:19:27 MNPO: jumped over filemark fence
    13:19:27 VLBR: not at bot: 0x90000000
    13:19:27 VLBR: tag on label just read: ""
    13:19:27 QTOS: received osb_stats message for job admin/80, kbytes 3145856, nfiles 0
    13:19:27 VLBR: master tag now ""
    13:19:27 RLE: set kb remaining to 819375104
    13:19:27 RLE: qdb__set_kb_rem_se reports vol_oid 0, arch_oid 0
    13:19:27 RLE: noticed nil label
    13:19:27 RLE: qdb__noticed_se reports vol_oid 0, arch_oid 0
    13:19:27 VLBR: setting last section flag for backup section oid 380
    13:19:27 MNPO: sent successful mover close
    13:19:27 MNPO: data service halted with reason=internal error
    13:19:27 SNPD: Data Service reported bytes processed 0xC0020000
    13:19:27 SNPD: stopping NDMP data service (to transition to idle state)
    13:19:27 MNPO: mover halted with reason=connection closed
    13:19:27 MGS: ms.record_size 65536, ms.record_num 0xC002, ms.bytes_moved 0xC0020000
    Error: NDMP operation failed: unspecified error reported (see above)
    13:19:27 RONPC: finished NDMP restore with status 97
    13:19:27 RONPC: NDMP read-ahead positioned tape past filemark; backing up
    13:19:27 RONPC: We believe this because initial file # 0 isn't end file # 1
    13:19:27 RONPC: the section-relative block number at end of restore is 0x1
    13:19:27 RONPC: tape position after restore is 0001032B0080
    13:19:27 QREX: exit status upon entry is 97
    13:19:27 QREX: released reservation on tape drive tape
    13:19:27 RDB: reading volume record for oid 137
    13:19:27 RDB: reading section record for oid 369
    13:19:27 RDB: adding record for oid 369 (file 1, section 1) to section list
    13:19:27 RDB: reading section record for oid 378
    13:19:27 RDB: adding record for oid 378 (file 2, section 1) to section list
    13:19:27 RDB: reading section record for oid 380
    13:19:27 RDB: adding record for oid 380 (file 3, section 1) to section list
    13:19:27 RDB: file 1 has all 1 required sections; clearing incomplete backup flags
    13:19:27 RDB: reading section record for oid 369
    13:19:27 RDB: file 2 has all 1 required sections; clearing incomplete backup flags
    13:19:27 RDB: reading section record for oid 378
    13:19:27 RDB: file 3 has all 1 required sections; clearing incomplete backup flags
    13:19:27 RDB: reading section record for oid 380
    13:19:27 RDB: 1 volumes in volume list
    13:19:27 RDB: volume oid 137 reports first:last files of 1:3
    13:19:27 RDB: marking volume oid 137 as authoritative
    13:19:27 VMA: reading volume record for oid 137
    13:19:27 RLYX: exit status 97; checking allocs...
    13:19:27 RLYX: from mm__check_all: 1
    ob> catxcr -fl0 admin/81
    2012/09/04.13:19:29 ______________________________________________________________________
    2012/09/04.13:19:29
    2012/09/04.13:19:29 Transcript for job admin/81 running on backup-server
    2012/09/04.13:19:29
    2012/09/04.13:19:30 Info: mount data verified.
    2012/09/04.13:19:30 Info: volume in tape is usable for this operation.
    13:19:31 OBTR: obtar version 10.4.0.1.0 (Solaris) -- Fri Sep 23 23:41:16 PDT 2011
    Copyright (c) 1992, 2011, Oracle. All rights reserved.
    13:19:31 OBTR: obtar -Xjob:admin/81 -Xob:10.4 -xOz -Xbga:admin/81 -JJJJv -y /usr/tmp/[email protected] -Xrdf:admin/81 -e DC-ORCL-
    MF-000001 -F1 -f tape -Xrescookie:0xBE1A8F6 -H client01 -u
    13:19:31 RRDF: restore "/wdn/testf" as "/restore", pos 000000010003
    13:19:31 OBTR: running as root/root
    13:19:31 OBTR: record storage set to internal memory
    13:19:31 ATAL: reserved drive tape, cookie 0xBE1A8F6
    13:19:31 OBTR: obsd=1, is_job=1, is_priv=0, os=3
    13:19:31 OBTR: rights established for user admin, class admin
    13:19:31 SUUI: user info root/root, ??/??
    13:19:31 MAIN: using blocking factor 128 from media defaults/policies
    13:19:31 STTY: background terminal I/O or is a tty
    13:19:31 MAIN: interactive
    13:19:31 DOLM: nop (for tape (raw device "/dev/obt1"))
    13:19:31 DOLM: ok
    13:19:32 RLE: connecting to volume/archive database host
    13:19:32 RLE: device tape (raw device "/dev/obt1")
    13:19:32 RLE: mount_info is valid
    13:19:32 RLE: qdb__device_spec_se reports vol_oid 0, arch_oid 0
    13:19:32 A_O: using max blocking factor 128 from media defaults/policies
    13:19:32 A_O: tape device is local
    13:19:32 A_O: Devname: HP,Ultrium 4-SCSI,H61W
    13:19:32 Info version: 11
    13:19:32 WS version: 10.4
    13:19:32 Driver version: 10.4
    13:19:32 Max DMA: 2097152
    13:19:32 Blocksize in use: 65536
    13:19:32 Query frequency: 134217728
    13:19:32 Rewind on close: false
    13:19:32 Can compress: true
    13:19:32 Compression enabled: true
    13:19:32 Device supports encryption: true
    13:19:32 8200 media: false
    13:19:32 Remaining tape: 819375104
    13:19:32 A_GB: ar_block at 0x100352000, size=2097152
    13:19:32 A_GB: ar_block_enc at 0x100554000, size=2097152
    13:19:32 ADMS: reset library tape selection state
    13:19:32 ADMS: reset complete
    13:19:35 ACFD: positioning (SCSI LOCATE) is available for this device
    13:19:35 GLMT: returning "", code = 0x0
    13:19:35 VLBR: from chk_lm_tag: "", code = 0x0
    13:19:35 VLBR: tag on label just read: ""
    13:19:35 VLBR: master tag now ""
    13:19:35 RLE: noticed volume DC-ORCL-MF-000001, file 1, section 1, vltime 1346566310, vowner root, voltag
    13:19:35 RLE: qdb__noticed_se reports vol_oid 137, arch_oid 369
    (alv) backup image label is valid, file 4, section 1
    (ial) invalidate backup image label (was valid)
    13:19:35 RSMD: rewrote mount db for tape
    13:19:35 ULVI: set mh db volume id "DC-ORCL-MF-000001" (retid ""), volume oid 137, code 0
    13:19:35 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:19:35 CALE: created backup section oid list entry for oid 369
    13:19:35 PF: here's the label at the current position:
    Volume label:
    Intro time: Fri May 04 13:35:03 2012
    Volume UUID: d40ea6c6-d6c2-102f-bf51-da716418c062
    Volume ID: DC-ORCL-MF-000001
    Volume sequence: 1
    Volume set owner: root
    Volume set created: Sun Sep 02 11:56:50 2012
    Volume set closes: Sat Dec 01 11:56:50 2012 (no writes after this time)
    Volume set expires: Sat Mar 02 11:56:50 2013
    Media family: DC-ORCL-MF
    Original UUID: d40ea6c6-d6c2-102f-bf51-da716418c062
    Archive label:
    File number: 1
    File section: 1
    Owner: root
    Client host: client01
    Backup level: 0
    S/w compression: no
    Archive created: Sun Sep 02 11:56:50 2012
    Archive owner UUID: f32ac938-6410-102f-a3d5-b94c4468403b
    Owner class UUID: f32a3504-6410-102f-a3d5-b94c4468403b
    Encryption: off
    13:19:35 PF: at desired location
    13:19:35 BT: resid is 1
    13:19:35 ACFD: positioning (SCSI LOCATE) is available for this device
    13:19:35 ADMS: reset library tape selection state
    13:19:35 ADMS: reset complete
    13:19:35 GLMT: returning "", code = 0x0
    13:19:35 VLBR: from chk_lm_tag: "", code = 0x0
    13:19:35 VLBR: tag on label just read: ""
    13:19:35 VLBR: master tag now ""
    13:19:35 RLE: noticed volume DC-ORCL-MF-000001, file 1, section 1, vltime 1346566310, vowner root, voltag
    13:19:35 RLE: qdb__noticed_se reports vol_oid 137, arch_oid 369
    (alv) backup image label is not valid
    13:19:35 ULVI: set mh db volume id "DC-ORCL-MF-000001" (retid ""), volume oid 137, code 0
    13:19:35 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:19:35 CALE: found existing backup section oid list entry for oid 369
    13:19:35 ADMS: reset library tape selection state
    13:19:35 ADMS: reset complete
    13:19:35 RLE: read volume DC-ORCL-MF-000001, file 1, section 1, vltime 1346566310, vowner root, voltag
    13:19:35 RLE: qdb__read_se reports vol_oid 137, arch_oid 369
    (alv) backup image label is not valid
    13:19:35 ULVI: set mh db volume id "DC-ORCL-MF-000001" (retid ""), volume oid 137, code 0
    13:19:36 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:19:36 PTNI: positioning to "/wdn/testf" at 000000010003
    13:19:37 CNPC: data host reports this butype_info:
    13:19:37 CNPC: tar (attr 0x2C78: B_DIRECT, R_DIRECT, B_INCR, R_INCR, B_FH_DIR)
    13:19:37 CNPC: DIRECT = y
    13:19:37 CNPC: HISTORY = y
    13:19:37 CNPC: LEVEL = 0
    13:19:38 SNP: connection types supported by mover -
    13:19:38 tcp
    13:19:38 SNP: connection types supported by data service -
    13:19:38 tcp
    13:19:38 SNP: selected data connection type: tcp
    13:19:38 SNP: using separate data and tape/mover connections
    13:19:38 SNP: the NDMP protocol version for tape/mover is 4, for data is 4
    13:19:38 SNP: backup-server's NDMP tape/mover service session id is 7935
    13:19:38 RONPC: begin OSB NDMP data restore
    13:19:38 RONPC: need to restore from "/wdn/testf" tree:
    13:19:38 RONPC: tape position before restore is 000000010004
    13:19:38 MGS: ms.record_size 65536, ms.record_num 0x0, ms.bytes_moved 0x0
    13:19:38 RONPC: about to start restore; here are the environment variables:
    13:19:38 RONPC: env BEGINTREE=1
    13:19:38 RONPC: env NAME=/wdn/testf
    13:19:38 RONPC: env AS=/restore
    13:19:38 RONPC: env POSLEN=6
    13:19:38 RONPC: env POS=
    13:19:38 RONPC: env BLEVEL=0
    13:19:38 RONPC: env FIRSTCH=1
    13:19:38 RONPC: env POS_HERE=1
    13:19:38 RONPC: env EX2KTYPE=
    13:19:38 RONPC: env DATA_BLOCK_SIZE=64
    13:19:38 RONPC: env SKIP_RECORDS=3
    13:19:38 RONPC: env LABEL_VERSION=0000012
    13:19:38 SMW: setting NDMP mover window to offset 0x0, length 0xFFFFFFFFFFFFFFFF
    13:19:38 MLIS: mover listen ok for tcp connection; these addresses were reported:
    13:19:38 MLIS: 192.168.3.109:58303
    13:19:38 MLIS: 0.0.0.0:58303
    13:19:38 RONPC: tape fileno/blockno before restore are 0/0
    13:19:38 APNI: a preferred network interface does not apply to this connection
    13:19:38 DPNI: load balancing is in use, skipping default PNI
    13:19:38 RONPC: directing data service to connect to mover
    13:19:11 PPVL: obtar option OB_JOB = admin/81
    13:19:11 PPVL: obtar option OB_RB = 10.4
    13:19:11 PPVL: obtar option OB_EXTR = 1
    13:19:11 PPVL: obtar option OB_EXTRACT_ONCE = 1
    13:19:11 PPVL: obtar option OB_DEBUG = 1
    13:19:11 PPVL: obtar option OB_DEBUG = 1
    13:19:11 PPVL: obtar option OB_DEBUG = 1
    13:19:11 PPVL: obtar option OB_DEBUG = 1
    13:19:11 PPVL: obtar option OB_VERBOSE = 1
    13:19:11 PPVL: obtar option OB_CLIENT = client01
    13:19:11 PPVL: obtar option OB_HONOR_IN_USE_LOCK = 1
    13:19:11 PPVL: obtar option OB_STAT = 1
    13:19:11 PPVL: obtar option OB_VOLUME_LABEL = 1
    13:19:11 PPVL: obtar option OB_SKIP_CDFS = 1
    13:19:11 PPVL: obtar option OB_DEVICE = tape
    13:19:11 PPVL: obtar option OB_BLOCKING_FACTOR = 128
    13:19:11 PPVL: obtar option OB_VERIFY_ARCHIVE = no
    13:19:11 PPVL: obtar option OB_PQT = 134217728
    13:19:11 DSIN: 2GB+ files are supported, 2GB+ directories are supported
    13:19:11 SETC: identity is already root/root
    13:19:38 qtarndmp__ssl_setup: SSL has been disabled via the security policy
    13:19:38 RONPC: issuing NDMP_DATA_START_RECOVER
    13:19:43 RONPC: started NDMP restore
    13:19:43 MNPO: received NDMP_NOTIFY_DATA_READ, offset 0x0, length 0xFFFFFFFFFFFFFFFF
    13:19:43 MNPO: sent corresponding NDMP_MOVER_READ
    13:19:43 QTOS: received osb_stats message for job admin/81, kbytes 64, nfiles 0
    13:19:43 await_ndmp_event: sending progress update
    13:19:43 SPU: sending progress update
    /restore
    Error: Could not make file /restore: Is a directory
    13:19:44 MNPO: jumped over filemark fence
    13:19:44 VLBR: not at bot: 0x90000000
    13:19:44 VLBR: tag on label just read: ""
    13:19:44 QTOS: received osb_stats message for job admin/81, kbytes 51328, nfiles 0
    13:19:44 VLBR: master tag now ""
    13:19:44 RLE: noticed volume DC-ORCL-MF-000001, file 2, section 1, vltime 1346566310, vowner root, voltag
    13:19:44 RLE: qdb__noticed_se reports vol_oid 137, arch_oid 378
    (alv) backup image label is not valid
    13:19:45 ULVI: set mh db volume id "DC-ORCL-MF-000001" (retid ""), volume oid 137, code 0
    13:19:45 ULTG: set mh db tag "" (retid "DC-ORCL-MF-000001"), volume oid 137, code 0
    13:19:45 CALE: created backup section oid list entry for oid 378
    13:19:45 VLBR: setting last section flag for backup section oid 369
    13:19:45 MNPO: sent successful mover close
    13:19:45 MNPO: data service halted with reason=internal error
    13:19:45 SNPD: Data Service reported bytes processed 0x3220000
    13:19:45 SNPD: stopping NDMP data service (to transition to idle state)
    13:19:45 MNPO: mover halted with reason=connection closed
    13:19:45 MGS: ms.record_size 65536, ms.record_num 0x322, ms.bytes_moved 0x3220000
    Error: NDMP operation failed: unspecified error reported (see above)
    13:19:45 RONPC: finished NDMP restore with status 97
    13:19:45 RONPC: NDMP read-ahead positioned tape past filemark; backing up
    13:19:45 RONPC: We believe this because initial file # 0 isn't end file # 1
    13:19:45 RONPC: the section-relative block number at end of restore is 0x1
    13:19:45 RONPC: tape position after restore is 000003230080
    13:19:45 QREX: exit status upon entry is 97
    13:19:45 QREX: released reservation on tape drive tape
    13:19:45 RDB: reading volume record for oid 137
    13:19:45 RDB: reading section record for oid 369
    13:19:45 RDB: adding record for oid 369 (file 1, section 1) to section list
    13:19:45 RDB: reading section record for oid 378
    13:19:45 RDB: adding record for oid 378 (file 2, section 1) to section list
    13:19:45 RDB: reading section record for oid 380
    13:19:45 RDB: adding record for oid 380 (file 3, section 1) to section list
    13:19:45 RDB: file 1 has all 1 required sections; clearing incomplete backup flags
    13:19:45 RDB: reading section record for oid 369
    13:19:45 RDB: file 2 has all 1 required sections; clearing incomplete backup flags
    13:19:45 RDB: reading section record for oid 378
    13:19:45 RDB: file 3 has all 1 required sections; clearing incomplete backup flags
    13:19:45 RDB: reading section record for oid 380
    13:19:45 RDB: 1 volumes in volume list
    13:19:45 RDB: volume oid 137 reports first:last files of 1:3
    13:19:45 RDB: marking volume oid 137 as authoritative
    13:19:45 VMA: reading volume record for oid 137
    13:19:45 RLYX: exit status 97; checking allocs...
    13:19:45 RLYX: from mm__check_all: 1
    ob>
    Please help me to resolve the issue...
    Thanks,
    Sam

    If you're restoring a file you have to list it, so if you are restoring /wdn/file01 then you specify the alternate path as /restore/file01
    Thanks
    Rich

  • The Add-on Creative Cloud Libraries failed to install, General error message

    Hi there,
    My CC icon has an exclamation mark next to it and following message appears when in Apps:
    "The Add-on Creative Cloud Libraries failed to install, General error message"
    Any idea what could be a reason and how to sort it out?
    Thanks,
    Zana

    Nobody can tell you anything without proper system info or other technical details.
    Mylenium

  • General Error; failed to render the timeline and failed to export HD mpg2

    I have searched for the posts if there is same issue I'm having on the forum, and it seems it's similar yet not really...
    So I decided to post one.
    I have 2100 sequential frames in jpgs. (each jpg size is 1280x720)
    I open "image sequence" in QT 7.04 with 29.97 fps, then save it as MOV in external HD with firewire.
    Then I import it into FCP 5.04 on Timeline.
    Timeline setting is
    Frame Size : 1280x720 HDTV 720P (16:9)
    Pixel Aspect Ratio : Square uncheck Anamorphic 16:9
    Filed Dominance : None
    Editing Timebase : 29.97
    Quick time Vieo Setting : Compressor -DVCPRO HD 720P60 Quality 100%
    After I place the mov file on the timeline, the Red Bar shows up.
    I tried to render the timeline, it will only try to render to 3% and stop, and "general error" pops up.
    I tried to use Compressor 2.01 with HD mpg2 preset to export out as HD mpg2 format, and it will fail to export.
    After I read several posts on here, I was wondering I might have corrupted mov...
    I re-create MOV file from QT and import in FCP5 and do the same... but I still get the same error...
    I tried to re-start computer and tried, no luck..
    Then I was wondering maybe some of the jpgs is corrupted...
    I'm not sure how to check which jpg file is corrputed since there is 2100 frames in directory.
    It is able to show all jpgs as thumbnail images..
    So my questions here.. are...
    If I do anything wrong during the step?
    If not... what's wrong? why i can't render the timeline, and why i can't export to HD?
    Or if there is a "way" to figure out what file is corrupted..?
    This is not first time I have the same problem, I even tried to test out with 10,000 jpgs frames and create mov ... and import in FCP5..etc...
    I had no problem with render and export... so I don't think it's the "HD length" issue...
    If anyone have the same issue or know what's wrong... please help!!!
    Thank you,

    I downloaded iview Media pro free trial version to catalog the image to see if there is any corrupted jpgs.
    Unfortunately, it didn't find any corrupted jpgs.
    I also tried to change the sequence setting, under "QuickTime Video Setting" from "DVCPRO HD 720p60" to "HDV 720p30" (since I found out the frame size for DVCPRO HD 720p60 is 960x720 with 59.99 fps).
    The result I get after I placed mov on timeline, it used to give red bar, it gave me orange bar... which made me be able to render the timeline without problem.
    However, Compressor still is not able to export HD mpg2.
    Then I changed QuickTime Video Setting from HDV 720p30 to "photo-jpg", the bar is now grey, but still not able to export to HD mpg2.
    now I don't really don't know what's going on.
    anyone can suggest me what else I can try and see...??

  • Mac app store upload failed due to a general error

    I am using the latest XCode, freshly installed. I am working with Snow Leopard, Lion and Mountain Lion. Wherever I try to upload a new application to the mac app store, I get the following error message:
    Unable to process validateProductSoftwareAttributes request at this time due to a general error.
    I submitted the app yesterday and it was validated and waiting for review, so there were no issues at all. But today I rejected the binary because I found a bug. Now it does not upload anymore. There have not been any changes to the Info.plist or the entitlement file.
    The error message hints to wait for some hours and try again, but I have bad experiences with application submitting and not getting sound error messages.
    Any hints?

    >I submitted the app yesterday and it was validated and waiting for review, so there were no issues at all. But today I rejected the binary because I found a bug. Now it does not upload anymore. There have not been any changes to the Info.plist or the entitlement file.
    I am having very similar problem. Today looks like  many other people are facing same issue.
    Refer to this:
    http://stackoverflow.com/questions/8353049/unable-to-process-application-info-pl ist-validation-at-this-time-due-to-a-genera
    And pardon my poor English (I'm Japanese).

  • Database error"ORA-00060: deadlock detected while waiting for resource"

    Hi All,
    I got dump as
    Database error text........: "ORA-00060: deadlock detected while waiting for
      resource"
    Internal call code.........: "[RSQL/RDUP/NRIV ]"
    Please check the entries in the system log (Transaction SM21).
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
    in
    procedure "READ_NRIV" "(FORM)", nor was it propagated by a RAISING clause.
    Can u ppl tell me how to get correct this?
    Edited by: Bala Chandar on Jul 20, 2009 11:01 AM

    Hi Bala,
    Same type of dump we got when we trigger the DTP which in process chain to load data from DSO to Info cube. And the load had processed with 225 data package and at 164th data package we got this error and except 164th data package all data package processed successfully
    And the request was red. So we had done processed manually by clicking the icon. So all its been green and successfully loaded.
    So when you do process manual the particular data package which got failed will be process successfully  

  • General Error while exporting QT

    The last couple of projects I've done have been online conforms to HD 10bit uncompressed.
    After finishing all of my tweeks, I wish to output a master Quicktime. As usual I place my in and out markers at the beginning and end of my timeline, and select Export to QuickTime Movie. I select current settings and make self contained. I target my XRAID with better than 1.5 TB available.
    I've had both of these project fail well into the output process. All FCP says is "General Error". After a little research I discover that I'm not the only one with this problem. I tried trashing all of my FCP prefs and trashing my render files and re-building them.
    If I Export to Compressor, the entire timeline will output without failing.
    So, why is this happening? and... If I have a 1920x1080 23.98p 422 10bit uncompressed timeline and I export thru Compressor set to transcode to the very same settings. Is my video compromised in any way?
    My latest piece is about 60 minutes, it appears to fail while halfway done. The previous one was 20 minutes and failed earlier.
    Intel 8 core 3.0Ghz, 6 Gig of RAM, OSX 10.5.5, QT 7.5.5, FCP 6.0.5, Kona3 (v6 software)
    STeve

    I eventually found a couple of clips 3/4s into my timeline that were fixes from Color. They were rendered out in an AJA YUV codec instead of the normal Uncompressed 10bit 422 codec. Although they looked fine, they were the fly in the ointment. When I ran the two offending clips out thru Compressor and replaced them in the timeline, the entire project exported in one go.
    I wish FCP would do a better job of informing what and where the problem is, instead of the "General Error" message.
    STeve

  • General Error Message When Installing Flash Player on Mac

    I have a new MacBook Pro.  I have OS 10.8.2.   I cannot get FlashPlayer to download.  I have tried uninstalling and reinstalling Adobe Flash Player 11 from the Adobe website.  Doesn't work.  Every time I try to download, I get an error message that says "Error: General Installation Error"   Can someone PLEASE help?  I've spent hours with this and am very frustrated.

    Thank you for your reply.   I am running Safari, and I have tried  it with
    the browser closed and open, and same result.  Here's the  string:
    1/29/13 9:14:23.111 AM coreservicesd[72]: Application App:"Install 
    Adobe Flash Player" @ 0x0x7ffa02372980 tried to be 
    brought forward, but isn't in fPermittedFrontASNs ( (
    ASN:0x0-0x4fc4fc:)  ), so denying.
    1/29/13 9:14:23.111 AM WindowServer[98]: Failed  setting
    the front application to Install Adobe Flash Player, psn  0x0-0x4fb4fb,
    securitySessionID=0x186f3, err=-13066
    1/29/13 9:16:36.000  AM kernel[0]: HFS: Vol: Flash Player Very Low Disk:
    freeblks: 0,  dangerlimit: 84
    1/29/13 9:17:17.590 AM sudo[6366]: Aaron : TTY=unknown ;  PWD=/ ;
    USER=Aaron ; COMMAND=/usr/bin/open 
    http://get.adobe.com/flashplayer/completion/aih/?exitcode=255&type=install
    1/29/13  9:31:50.494 AM coreservicesd[72]: Application App:"Install
    Adobe Flash  Player" @ 0x0x7ffa0141e3c0 tried to be
    brought forward, but  isn't in fPermittedFrontASNs ( (
    ASN:0x0-0x518518:) ), so  denying.
    1/29/13 9:31:50.494 AM WindowServer[98]: Failed  setting
    the front application to Install Adobe Flash Player, psn  0x0-0x517517,
    securitySessionID=0x186f3, err=-13066
    1/29/13 9:33:52.000  AM kernel[0]: HFS: Vol: Flash Player Very Low Disk:
    freeblks: 0,  dangerlimit: 84
    1/29/13 9:35:32.014 AM sudo[6521]: Aaron : TTY=unknown ;  PWD=/ ;
    USER=Aaron ; COMMAND=/usr/bin/open 
    http://get.adobe.com/flashplayer/completion/aih/?exitcode=255&type=install
    1/29/13  9:44:32.000 AM kernel[0]: HFS: Vol: Flash Player Very Low Disk:
    freeblks: 0,  dangerlimit: 3
    1/29/13 9:46:55.473 AM coreservicesd[72]: Application  App:"Adobe Flash
    Player Install Manager" @ 0x0x7ffa01418520  tried to be
    brought forward, but isn't in fPermittedFrontASNs ( ( 
    ASN:0x0-0x545545:) ), so denying.
    1/29/13 9:46:55.474 AM  WindowServer[98]: Failed setting
    the front application to  Adobe Flash Player Install Manager, psn
    0x0-0x543543,  securitySessionID=0x186f3, err=-13066
    1/29/13 9:46:55.784 AM authexec[6588]:  executing /Library/Application
    Support/Adobe/Flash Player Install  Manager/fpsaud
    1/29/13 10:37:02.258 AM coreservicesd[72]: Application  App:"Install
    Adobe Flash Player" @ 0x0x7ffa02123b30 tried to  be
    brought forward, but isn't in fPermittedFrontASNs ( ( 
    ASN:0x0-0x57d57d:) ), so denying.
    1/29/13 10:37:02.258 AM  WindowServer[98]: Failed setting
    the front application to  Install Adobe Flash Player, psn 0x0-0x57c57c,
    securitySessionID=0x186f3,  err=-13066
    1/29/13 10:39:02.000 AM kernel[0]: HFS: Vol: Flash Player Very Low 
    Disk: freeblks: 0, dangerlimit: 84
    1/29/13 10:39:27.431 AM sudo[6839]:  Aaron : TTY=unknown ; PWD=/ ;
    USER=Aaron ; COMMAND=/usr/bin/open 
    http://get.adobe.com/flashplayer/completion/aih/?exitcode=255&type=install
    1/29/13  2:54:59.429 PM coreservicesd[72]: Application App:"Adobe Flash
    Player  Install Manager" @ 0x0x7ffa01418520 tried to be
    brought  forward, but isn't in fPermittedFrontASNs ( (
    ASN:0x0-0x597597:) ), so  denying.
    1/29/13 2:54:59.429 PM WindowServer[98]: Failed  setting
    the front application to Adobe Flash Player Install Manager, psn 
    0x0-0x594594, securitySessionID=0x186f3, err=-13066
    1/29/13 2:54:59.740  PM authexec[6892]: executing /Library/Application
    Support/Adobe/Flash Player  Install Manager/fpsaud
    1/29/13 3:04:55.770 PM coreservicesd[72]: Application  App:"Install
    Adobe Flash Player" @ 0x0x7ffa014417d0 tried to  be
    brought forward, but isn't in fPermittedFrontASNs ( ( 
    ASN:0x0-0x5b65b6:) ), so denying.
    1/29/13 3:04:55.770 PM  WindowServer[98]: Failed setting
    the front application to  Install Adobe Flash Player, psn 0x0-0x5b45b4,
    securitySessionID=0x186f3,  err=-13066
    1/29/13 3:06:56.000 PM kernel[0]: HFS: Vol: Flash Player Very Low  Disk:
    freeblks: 0, dangerlimit: 84
    I look forward to your  response.
    Hilary
    In a message dated 1/29/2013 6:27:35 P.M. Central Standard Time, 
    [email protected] writes:
    Re:  General Error Message When Installing Flash Player on Mac
    created by Chris Campbell (http://forums.adobe.com/people/chris.campbell)
      in Installing Flash Player - View the full  discussion
    (http://forums.adobe.com/message/5032761#5032761)

  • External SOAP-Call ends with general error "PART UNKNOWN (NULL)"

    Hi,
    we generated a consumer proxy using the following WSDL file:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:intf="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="https://soap.global-esign.com/xsd" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by Apache Axis version: 1.3
    Built on Oct 05, 2005 (05:23:37 EDT)-->
       <wsdl:message name="CreatePdfSignatureRequest">
          <wsdl:part name="in0" type="xsd:string"/>
          <wsdl:part name="in1" type="xsd:string"/>
          <wsdl:part name="in2" type="xsd:base64Binary"/>
          <wsdl:part name="in3" type="xsd:string"/>
          <wsdl:part name="in4" type="xsd:boolean"/>
          <wsdl:part name="in5" type="xsd:string"/>
          <wsdl:part name="in6" type="xsd:string"/>
       </wsdl:message>
       <wsdl:message name="CreatePdfSignatureResponse">
          <wsdl:part name="CreatePdfSignatureReturn" type="xsd:base64Binary"/>
       </wsdl:message>
       <wsdl:portType name="GlobalEsignSoapExt">
          <wsdl:operation name="CreatePdfSignature" parameterOrder="in0 in1 in2 in3 in4 in5 in6">
             <wsdl:input message="impl:CreatePdfSignatureRequest" name="CreatePdfSignatureRequest"/>
             <wsdl:output message="impl:CreatePdfSignatureResponse" name="CreatePdfSignatureResponse"/>
          </wsdl:operation>
       </wsdl:portType>
       <wsdl:binding name="GlobalEsignSoapExtSoapBinding" type="impl:GlobalEsignSoapExt">
          <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
          <wsdl:operation name="CreatePdfSignature">
             <wsdlsoap:operation soapAction=""/>
             <wsdl:input name="CreatePdfSignatureRequest">
                <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://GlobalEsign.tsi.de" use="encoded"/>
             </wsdl:input>
             <wsdl:output name="CreatePdfSignatureResponse">
                <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" use="encoded"/>
             </wsdl:output>
          </wsdl:operation>
       </wsdl:binding>
       <wsdl:service name="GlobalEsignSoapExtService">
          <wsdl:port binding="impl:GlobalEsignSoapExtSoapBinding" name="GlobalEsignSoapExt">
             <wsdlsoap:address location="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt"/>
          </wsdl:port>
       </wsdl:service>
    </wsdl:definitions>
    The coding of the test program is:
    *& Report  Z_SOAP_PDF_SIGNATUR
    REPORT  z_soap_pdf_signatur.
    *------ Type pools
    type-pools: sai.
    *------ Class definitions and references
    DATA: lo_zpdf_sign    TYPE REF TO zpdfco_global_esign_soap_ext,
          lo_system_fault TYPE REF TO cx_ai_system_fault,
          lo_appl_fault   type ref to cx_ai_application_fault.
    *------ data
    DATA: output TYPE zpdfcreate_pdf_signature_respo,
          input TYPE  zpdfcreate_pdf_signature.
    DATA: wa_controller TYPE prxctrl.
    DATA:  pdfout(255) TYPE c  VALUE
    'C:/TEMP/pp-20080229-93ES-40010-0013439840-1690000005.pdf',
           pdfsign(255) TYPE c  VALUE
    'C:/TEMP/pp-20080229-93ES-40010-0013439840-1690000005-sign.pdf',
            wa_objcont TYPE soli,
            objcont LIKE soli  OCCURS 0.
    DATA: xlines TYPE string,
          buffer TYPE  xstring,
          x_msg  TYPE c LENGTH 100.
    TRY.
        CREATE OBJECT lo_zpdf_sign
          EXPORTING
            logical_port_name = 't_systems'.
      CATCH cx_ai_system_fault .
    ENDTRY.
    * read unsigned pdf
    OPEN DATASET pdfout FOR INPUT MESSAGE x_msg
                        IN BINARY MODE.
    TRY.
        READ DATASET pdfout INTO xlines.
      CATCH cx_sy_file_open_mode.
        EXIT.
    ENDTRY.
    CLOSE DATASET pdfout.
    * convert string
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
      EXPORTING
        text           = xlines
    *   MIMETYPE       = ' '
    *    encoding       = 'UTF-8'
    IMPORTING
        buffer         = buffer
      EXCEPTIONS
        failed         = 1
        OTHERS         = 2  .
    TRY.
        input-in0 = 'user'.
        input-in1 = 'password'.
        input-in2 =  buffer.
        input-in3 = 'affilinet'.
        CALL METHOD lo_zpdf_sign->create_pdf_signature
          EXPORTING
            input  = input
          IMPORTING
            output = output.
      CATCH cx_ai_system_fault INTO lo_system_fault.
        DATA: lv_message TYPE string.
        DATA: lv_message_long TYPE string.
        CALL METHOD lo_system_fault->if_message~get_text
          RECEIVING
            result = lv_message.
        CALL METHOD lo_system_fault->if_message~get_longtext
          RECEIVING
            result = lv_message_long.
        WRITE lv_message.
        WRITE lv_message_long.
      CATCH cx_ai_application_fault into lo_appl_fault.
        DATA: lv_messaap TYPE string.
        DATA: lv_messaap_long TYPE string.
        CALL METHOD lo_appl_fault->if_message~get_text
          RECEIVING
            result = lv_messaap.
        CALL METHOD lo_appl_fault->if_message~get_longtext
          RECEIVING
            result = lv_messaap_long.
        WRITE lv_messaap.
        WRITE lv_messaap_long.
    ENDTRY.
    LOOP AT output-controller INTO wa_controller.
      WRITE:/ wa_controller-field.
      WRITE:/ wa_controller-value.
    ENDLOOP.
    * store signed pdf
    OPEN DATASET pdfsign FOR output MESSAGE x_msg
                        IN BINARY MODE.
    transfer output-CREATE_PDF_SIGNATURE_RETURN
             to pdfsign.
    Processing the soap call in the test programm ends in a system exception (cx_ai_system_fault)  with the message:
    "General Error Es ist ein Fehler bei der Proxy-Verarbeitung aufgetreten (  PART UNKNOWN (NULL)    )"
    It seems as if there is no response or a response in a wrong format given by the webservice.
    We had a look at the ICF-Trace.
    The request seems to be a proper soap-call.
    But the response is not in XML-format and therefore could not be completely displayed.
    it says:
    Ungültig auf der obersten Ebene im Dokument. Fehler beim Bearbeiten der Ressource 'file:///C:/Dokumente und Einstellungen/S...
    HTTP/1.1 200 OK
    ^
    Could anybody help ?
    Kind regards
    Heinz

    Hello Mathias,
    in our case the problem was, that the WDSL used parameters, which were not correcty interpreted by the SAP-Routine that creates the proxy.
    We changed the WDSL using only paramters covert by SAP.
    Here ist the WSDL that worked fine:
    <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:tsi="http://GlobalEsign.tsi.de">
    - <wsdl:documentation>
    <sidl:sidl xmlns:sidl="http://www.sap.com/2007/03/sidl" />
    </wsdl:documentation>
    - <wsdl:types>
    - <xsd:schema elementFormDefault="qualified" targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt">
    - <xsd:complexType name="CreatePdfSignature">
    - <xsd:sequence>
    <xsd:element name="in0" type="xsd:string" />
    <xsd:element name="in1" type="xsd:string" />
    <xsd:element name="in2" type="xsd:base64Binary" />
    <xsd:element name="in3" type="xsd:string" />
    <xsd:element name="in4" type="xsd:boolean" />
    <xsd:element name="in5" type="xsd:string" />
    <xsd:element name="in6" type="xsd:string" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    - <xsd:schema targetNamespace="http://GlobalEsign.tsi.de" xmlns="http://GlobalEsign.tsi.de">
    <xsd:import namespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" />
    <xsd:element name="CreatePdfSignature" type="tns:CreatePdfSignature" />
    - <xsd:element name="CreatePdfSignatureResponse">
    - <xsd:complexType>
    - <xsd:sequence>
    <xsd:element name="CreatePdfSignatureReturn" type="xsd:base64Binary" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </wsdl:types>
    - <wsdl:message name="CreatePdfSignature">
    <wsdl:part name="CreatePdfSignature" element="tsi:CreatePdfSignature" />
    </wsdl:message>
    - <wsdl:message name="CreatePdfSignatureResponse">
    <wsdl:part name="CreatePdfSignatureResponse" element="tsi:CreatePdfSignatureResponse" />
    </wsdl:message>
    - <wsdl:portType name="GlobalEsignSoapExt">
    - <wsdl:operation name="CreatePdfSignature">
    <wsdl:input message="tns:CreatePdfSignature" />
    <wsdl:output message="tns:CreatePdfSignatureResponse" />
    </wsdl:operation>
    </wsdl:portType>
    </wsdl:definitions>
    <wsdl:part name="in1" type="xsd:string"/>   was changed to <xsd:element name="in0" type="xsd:string" /> .
    Please let me know, whether you succeeded.
    Kind regards
    Heinz Schäfe

Maybe you are looking for

  • Forms 6.0.8 Multihomed?

    Current setup: - WinNT 4 SP5 - Developer 6.0 installed first (DEFAULT_HOME) - Oracle 8.1.5 installed into it's own home - OAS 4.0.8.1 installed into it's own home I do not want to upgrade my Dev 6.0 - I would prefer to just install the beta Forms 6.0

  • How to make optional fields in alv report

    Hello Experts,                          Can anyone tell me how to do fields as optional in ALV report Output. My requirement is I want to display only few fields as default in my output and remaining fields will be added if needed by clicking the lay

  • ERROR IN DATABSE WHILE  FETCHING TABLE NAME "SINVA"

    Table does not exist._ _*[orcale][ODBC][ORA]ORA-0115:IO error reading block from file 7(block#28809)*_ ORA-01110: data file7:_ General SQL error._ *'C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\ARAFIVE'* ORA-27: unable to queue I/O_ ORA-2707

  • How do I get my iPad to recognize my Pro 8600

    How do I get my iPad to recognize my Pro 8600, all in one Wireless

  • Dynamic prompting with stored procedures XI- urgent

    Post Author: moleary77 CA Forum: Crystal Reports I have a report that has 7 parameters and two stored procedures, I get the dynamic prompting to work wonders as stand alone dynamic parameters, however I need them to be cascading. How can I accomplish