null in DBA_AUDIT_SESSION username

Oracle 11.2.0.3 Std Ed a

Oracle Linux 64-bit 5.6

SQL > SELECT nvl(USERNAME,'**') USER name,.

2 OS_USERNAME,

3 USERHOST,

4 EXTENDED_TIMESTAMP

5 OF SYS. DBA_AUDIT_SESSION

6. WHERE returncode! = 0

7 and timestamp > trunc (sysdate - 5)

8 ORDER BY extended_timestamp desc

9;

USERNAME OS_USERNAM USERHOST EXTENDED_TIMESTAMP

---------- ---------- --------------- -----------------------------------

* NULL * scott MYDOMAIN\SCOTT 14 August 14 01.04.55.236863 PM - 05:00

ALL_READ joe MYDOMAIN\JOE - PC 13 August 14 12.20.10.004772 PM - 05:00

2 selected lines.

Why some entries have a value of null for the username?

I'm sure I forget what is obvious, but he's avoiding me.

Can you identify which client come these requests?  If the client sends a NULL string (which you can not test with a customer of sqlplus)?

Hemant K Collette

Tags: Database

Similar Questions

  • Why the username is null V$ session?

    Hello

    I'm working on oracle XE installed on XP. Connected to the DB using SQL * more. When I ask what follows.

    Select the user name from V$ session;

    Output:

    Username
    SYS















    15 selected lines.

    Why it shows the values null for the username. I opened one time SQL * more. No other session or connection to the DB.

    can someone please suggest?

    Username is null for background processes http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/intro.htm#sthref106

    Edited by: P. Forstmann on 16 September. 2010 19:05

  • Groovy expression if statement in the af source: image

    Hello guys, I have a servlet that streams a picture in af source: image, I wanted to put a picture by default if the flow of the servlet is null, I tried to use the EL expression (/showimage? imageId = #{sessionScope.username == null? sessionScope.username: resource ['images: default.jpg']}), I think I have the syntax here error... anyhelp? Thanks in advance.  Saidi.

    You can do this using EL, you must check in the servlet itself as the servlet does not return a value for you to check. Instead of trying to check it at the page level, check in the servlet itself and render the image by default if you do not get the actual flow.

    Timo

  • Simple query with a subquery returns the result of 'bad '.

    DB version: 11.2

    We have created approximately 27 patterns in the last 4 days. The query below confirms that.
    SQL > select username, created from dba_users where created > sysdate-4;
    
    USERNAME                       CREATED
    ------------------------------ --------------------
    MANHSMPTOM_DEV_01              12 Jul 2012 11:55:16
    PRSM01_OAT_IAU                 13 Jul 2012 01:51:03
    F_SW                           11 Jul 2012 17:52:42
    FUN_CDD_HK_SIT                 09 Jul 2012 15:33:57
    CEMSCOMPTOM_UAT_01             12 Jul 2012 11:43:45
    STORM02_OAT_IAU                13 Jul 2012 02:06:29
    .
    .
    27 rows selected.  -------------> Truncated output
    DBA_TS_QUOTAS.max_bytes column, we can determine the quota of space allocated for a user/schema
    SQL > desc dba_ts_quotas
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     TABLESPACE_NAME                           NOT NULL VARCHAR2(30)
     USERNAME                                  NOT NULL VARCHAR2(30)
     BYTES                                              NUMBER
     MAX_BYTES                                          NUMBER
     BLOCKS                                             NUMBER
     MAX_BLOCKS                                         NUMBER
     DROPPED                                            VARCHAR2(3)
    So, I wanted to see the space allocated for users created in the last 4 days. The following query should return only 27 cases because the subquery returns only 27 records. Instead, he returned 66 entries!
    select username, tablespace_name, max_bytes/1024/1024 quotaInMB
    from dba_ts_quotas
    where username in (select username from dba_users where created > sysdate-4);
    No idea why? I know this isn't a bug with oracle. It's just that I didn't eat fish lately.

    Hello

    J.Kiechle wrote:
    So, I wanted to see the space allocated for users created in the last 4 days.

    DBA_TS_QUOTAS does not have the space, but rather the maximum allowed for a given user.

    J.Kiechle wrote:
    The following query should return only 27 cases because the subquery returns only 27 records. Instead, he returned 66 entries!

    What happens if your user John has Quotas on 3 tablespace TBS1 and TBS3 and TBS2?
    You can't expect the outer query to retrieve only the more than 27 just line because the inner query returns 27 rows.

    For the space allocated by the storage space for newly created users, you'd better ask dba_segments. something like:

    select owner, tablespace_name, trunc(sum(bytes)/1024/1024) alloc_mb
    from dba_segments
    where owner in (select username from dba_users where created > sysdate - 4)
    group by owner, tablespace_name
    order by owner, tablespace_name;
    
  • query daynamic

    Hello
    I created the method defined where clause depending on
      public int checkUser(String userid, String pass) {
      System.out.println("***************User = " + userid);
      System.out.println("***************Pass = " + pass);
      ViewObjectImpl myView = getViewObj1();
      myView.setWhereClause(" Name = :UserName");
        myView.defineNamedWhereClauseParam("UserName", null, null);
        myView.setNamedWhereClauseParam("UserName",userid);
    
        System.out.println("Query == >"+myView.getQuery());
    
        myView.executeQuery();
        
      //myView.setNamedWhereClauseParam("userName",userid);
      //myView.setNamedWhereClauseParam("password",pass);
      
      int resul = 0;
      if (myView.getRowCount() == 0) {
      resul = 0;
      } else {
          if(pass.equals("pass")){
            resul = 1;
            }else
              resul = 2;
      }
      return resul ;
      }
     
    If use even see on page other keep the same query.
    I need after the removal of the method where the clauses added in the method.

    Try this code

    public int checkUser(String userid, String pass) {
      System.out.println("***************User = " + userid);
      System.out.println("***************Pass = " + pass);
      ViewObjectImpl myView = getViewObj1();
      myView.setWhereClause(" Name = :UserName");
      myView.defineNamedWhereClauseParam("UserName", null, null);
      myView.setNamedWhereClauseParam("UserName",userid);
    
        System.out.println("Query == >"+myView.getQuery());
    
        myView.executeQuery();
    
      //myView.setNamedWhereClauseParam("userName",userid);
      //myView.setNamedWhereClauseParam("password",pass);
    
      int resul = 0;
    //Use getEstimatedRowCount() Instead of getRowCount()
    if (myView.getEstimatedRowCount() == 0) {
      resul = 0;
      } else {
          if(pass.equals("pass")){
            resul = 1;
            }else
              resul = 2;
      }
      myView.removeNamedWhereClauseParam("UserName");
      myView.setWhereClause(null);
      myView.executeQuery();
    
      return resul ;
      }
    
  • How to check the sessions of locking in oracle 10g

    Hello

    I tried to get hang of the sessions. I had the session blocking using v$ lock view.

    Pls help how to get hang of the sessions.

    Kind regards
    Vincent

    >
    SQL > SELECT SID, SQL_ID, name of USER BLOCKING_SESSION FROM v$ session WHERE BLOCKING_SESSION IS NOT NULL;
    SELECT SID, SQL_ID, username, BLOCKING_SESSION FROM v$ session WHERE BLOCKING_SESSION IS NOT NULL
    *
    ERROR on line 1:
    ORA-00904: "BLOCKING_SESSION": invalid identifier
    >

    What is your version of the database? Please show us all the 5 digits of the version (select from version$ v); *

    10.1_

    SQL> select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Prod
    PL/SQL Release 10.1.0.4.0 - Production
    CORE    10.1.0.4.0      Production
    TNS for Linux: Version 10.1.0.4.0 - Production
    NLSRTL Version 10.1.0.4.0 - Production
    
    SQL> SELECT SID, SQL_ID, USERNAME, BLOCKING_SESSION FROM v$session WHERE BLOCKING_SESSION IS NOT NULL;
    
    no rows selected
    

    In 10.2*

    SQL> select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for HPUX: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    
    SQL> SELECT SID, SQL_ID, USERNAME, BLOCKING_SESSION FROM v$session WHERE BLOCKING_SESSION IS NOT NULL;
    
    no rows selected
    

    11g _ _ (showing a situation of real lock)

    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    5 rows selected.
    
    SQL> SELECT SID, SQL_ID, USERNAME, BLOCKING_SESSION FROM v$session WHERE BLOCKING_SESSION IS NOT NULL;
    
           SID SQL_ID        USERNAME                       BLOCKING_SESSION
    ---------- ------------- ------------------------------ ----------------
           145 62ttrb9xf43zr SCOTT                                      26
    
    1 row selected.
    

    Published by: user12035575 on 10 Sep, 2011 12:42

  • Kill several session

    Hello

    There are 100 sessions are active in the database, which is the best way to kill all the session using a single query.

    is it possible or not?

    Yes, with a bit of Pl/Sql, something like this (connected as SYS)

    SQL> declare
      2     str varchar2(100);
      3  begin
      4     for S in (select sid,serial# from v$session where username is not null
      5         and username != 'SYS')
      6     loop
      7         str := 'alter system kill session '||chr(39)||S.sid||','||S.serial#||chr(39);
      8         execute immediate str;
      9     end loop;
     10  end;
    
  • feature of ESCR is not prefixing the sys schema name.

    Hello

    There seems to be a bug with the desc functionality where it is not prefixing to the objects being queries sys.
    Which means that if I create a local copy of the table that is part of the service (i.e. Object) it will generate an error.
    This isn't the same behavior as in SQLPLUS (that works)

    Is this a known bug?

    Test scenario

    If I run the following text in the SQL worksheet
    desc all_users
    create table all_objects as select * from dual;
    desc all_users
    I get the following result.
    desc all_users
    Name     Null     Type         
    -------- -------- ------------ 
    USERNAME NOT NULL VARCHAR2(30) 
    USER_ID  NOT NULL NUMBER       
    CREATED  NOT NULL DATE         
    
    table ALL_OBJECTS created.
    desc all_users
    ERROR:                                 
    -------------------------------------- 
    ERROR: object ALL_USERS does not exist 
    From SQLPLUS, I get the following
    SQL> desc all_users
     Name                                      Null?    Type
     ----------------------------------------- -------- ---------------------------
    
     USERNAME                                  NOT NULL VARCHAR2(30)
     USER_ID                                   NOT NULL NUMBER
     CREATED                                   NOT NULL DATE
    
    SQL> create table all_objects as select * from dual;
    
    Table created.
    
    SQL> desc all_users
     Name                                      Null?    Type
     ----------------------------------------- -------- ---------------------------
    
     USERNAME                                  NOT NULL VARCHAR2(30)
     USER_ID                                   NOT NULL NUMBER
     CREATED                                   NOT NULL DATE

    Hi user123456789,

    New connected Bug
    Bug 12361640 - sys.all_objects not prefixed by sys so describe object during the breaks of the user

    Thank you

    Turloch
    SQLDeveloper - team.

  • users connected

    Hello
    I want to choose the users connected in my oracle 10g database.
    Thank you very much
    select username from v$session where username is not null group by username;
    
  • Unable to send a message of 10G and 11G

    one

    Hi all
    I'm unable to post 10 G and 11G, its throwing below error message...

    News of the machine: (usfacrz - dklwfwi12.dev.nog.org)
    Transport error: [IPT_HttpSendConnectionRefused] HTTP connection is refused.

    Connection refused

    Journal: 2010.09.29 in 05:55:10:780: Thread-32: B2B - oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage (DEBUG) Exchange Protocol is AS2 version 1.1
    2010.09.29 in 05:55:10:783: Thread-32: B2B - oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage (DEBUG) Protocol Document is Custom version is 7_2
    2010.09.29 in 05:55:10:786: Thread-32: B2B - 7_2 oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin OAG_7_2 (DEBUG)
    2010.09.29 in 05:55:10:788: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin info: X12_5020 version 5020
    2010.09.29 in 05:55:10:791: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin info: OAG_9_0 version 9.0
    2010.09.29 in 05:55:10:793: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin info: OAG_7_2 version 7_2
    2010.09.29 in 05:55:10:795: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setExchangePlugin AS2 version 1.1
    2010.09.29 in 05:55:10:798: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setExchangePlugin info: AS2version 1.1
    2010.09.29 in 05:55:10:800: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage translated = payload
    Oracle.Tip.adapter.B2B.message.MessageStorage@dd5681
    2010.09.29 in 05:55:10:803: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage msg.isSignalMsg (= false)
    2010.09.29 in 05:55:10:805: Thread-32: B2B - oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage (DEBUG) outgoing call request processor
    2010.09.29 in 05:55:10:808: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.Request:outgoingRequest entry
    2010.09.29 in 05:55:10:811: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.Request:outgoingRequest create the row in the Table of query-response to outgoing request with the State of the outgoing request message
    2010.09.29 in 05:55:10:814: Thread-32: B2B - (DEBUGGING) getBatchEventId = null
    2010.09.29 in 05:55:10:816: Thread-32: B2B - (DEBUGGING) getBatchEventId = after login
    2010.09.29 in 05:55:10:821: Thread-32: B2B - (DEBUGGING) getBatchEventId = after execution
    2010.09.29 in 05:55:10:824: Thread-32: B2B - (DEBUGGING) getBatchEventId = null
    2010.09.29 in 05:55:10:826: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.Request:outgoingRequest row to create the Message Table outgoing request message
    2010.09.29 in 05:55:10:830: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertMsgTblRow entry
    2010.09.29 in 05:55:10:854: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertMsgTblRow name Test11G toparty
    2010.09.29 in 05:55:10:857: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertMsgTblRow toparty type and value AS2 IdentifierTest11G
    2010.09.29 in 05:55:10:878: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertMsgTblRow BusinessAction for Process_OAG_7_2_ProcessPo BusinessAction_ADC7 name
    2010.09.29 in 05:55:10:934: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequest (DEBUG) Collaboration control is not necessary... to continue the processing of the application
    2010.09.29 in 05:55:10:937: Thread-32: B2B - setInitiatingPartyId() calling (DEBUG), changing the TPName: nog Type: AS2 identifier value: SOBER to TPName: nog Type: AS2 identifier value: SOBER
    2010.09.29 in 05:55:10:940: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:processOutgoingDocument entry
    2010.09.29 in 05:55:10:943: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:processDocument validate is false
    2010.09.29 in 05:55:10:947: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:processOutgoingDocument output
    2010.09.29 in 05:55:10:950: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (DEBUG) protocol calling CreateMessage specific
    2010.09.29 in 05:55:10:952: Thread-32: B2B - load null useful link ID Info oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (DEBUG)
    2010.09.29 in 05:55:10:955: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:createMessage entry
    2010.09.29 in 05:55:10:958: Thread-32: B2B - id of msg (DEBUG) oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:createMessage Protocol = < 25@NOGT >
    2010.09.29 in 05:55:10:962: Thread-32: B2B - compression oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:createMessage (DEBUG)
    2010.09.29 in 05:55:10:965: Thread-32: B2B - docInfo oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:createMessage (DEBUG)
    2010.09.29 in 05:55:10:979: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:createMessage contentDisp = attachment; filename = 7_2
    2010.09.29 in 05:55:10:985: Thread-32: B2B - oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:createMessage (DEBUG) encryption
    2010.09.29 in 05:55:10:988: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:createMessage output
    2010.09.29 in 05:55:10:991: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (DEBUG) Invoking PackMessage
    2010.09.29 in 05:55:10:993: Thread-32: B2B - MimePackaging:pack (DEBUG): enter
    2010.09.29 in 05:55:10:995: Thread-32: B2B - MimePackaging:createMimeMessage (DEBUG): enter
    2010.09.29 in 05:55:10:997: Thread-32: B2B - (DEBUGGING) MimePackaging:createMimeMessage:number of pc components: 1
    2010.09.29 in 05:55:11:000: Thread-32: B2B - MimePackaging:createMimeBodyPart (DEBUG): enter
    2010.09.29 in 05:55:11:003: Thread-32: B2B - MimePackaging:createMimeBodyPart:header (DEBUG) name-value: Content-Type-application/XML; name = 7_2
    2010.09.29 in 05:55:11:006: Thread-32: B2B - MimePackaging:createMimeBodyPart:header (DEBUG) name-value: Content-Disposition-attachment; filename = 7_2
    2010.09.29 in 05:55:11:008: Thread-32: B2B - MimePackaging:createMimeBodyPart:header (DEBUG) name-value: Content-Transfer-Encoding-binary
    2010.09.29 in 05:55:11:011: Thread-32: B2B - MimePackaging:applySecurity (DEBUG): enter
    2010.09.29 in 05:55:11:014: Thread-32: B2B - MimePackaging:applySecurity:Exit (DEBUG)
    2010.09.29 in 05:55:11:016: Thread-32: B2B - MimePackaging:createMimeBodyPart:Exit (DEBUG)
    2010.09.29 in 05:55:11:021: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setDigestAlgorithm using algorithm name entered...
    2010.09.29 in 05:55:11:023: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setDigestAlgorithm using algorithm name Leaving...
    2010.09.29 in 05:55:11:028: Thread-32: B2B - MimePackaging:applySecurity (DEBUG): enter
    2010.09.29 in 05:55:11:030: Thread-32: B2B - MimePackaging:createSignedMimeBodyPart (DEBUG): enter
    2010.09.29 in 05:55:11:034: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): before setProtocolVersion...
    2010.09.29 in 05:55:11:037: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setProtocolVersion Leaving...
    2010.09.29 in 05:55:11:039: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setSignatureAlgorithm using algorithm name entered...
    2010.09.29 in 05:55:11:042: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setSignatureAlgorithm using algorithm name Leaving...
    2010.09.29 in 05:55:11:045: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setDigestAlgorithm using algorithm name entered...
    2010.09.29 in 05:55:11:048: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setDigestAlgorithm using algorithm name Leaving...
    2010.09.29 in 05:55:11:051: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): before to sign...
    2010.09.29 in 05:55:11:054: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): sign using the configured certificate
    2010.09.29 in 05:55:11:057: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): sign wrl: /apps/elshad4/aelshad4/elshad4_OracleB2B/Apache/Apache/conf/ssl.wlt/default
    2010.09.29 in 05:55:11:072: Thread-32: B2B - (DEBUG) utility: getPrivateKey: enter
    2010.09.29 in 05:55:11:170: Thread-32: B2B - (DEBUG) utility: getPrivateKey: corresponding private key found
    2010.09.29 in 05:55:11:173: Thread-32: B2B - (DEBUG) utility: getPrivateKey:Exit
    2010.09.29 in 05:55:11:198: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): before setEncodingType...
    2010.09.29 in 05:55:11:201: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): setEncodingType Leaving...
    2010.09.29 in 05:55:11:203: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): update of seizure...
    2010.09.29 in 05:55:11:206: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): update of starting...
    2010.09.29 in 05:55:11:208: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): entry code...
    2010.09.29 in 05:55:11:210: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): encode Leaving...
    2010.09.29 in 05:55:11:212: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): departure to sign...
    2010.09.29 in 05:55:11:215: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): before printErrorInfo...
    2010.09.29 in 05:55:11:217: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): printErrorInfo Leaving...
    2010.09.29 in 05:55:11:223: Thread-32: B2B - MimePackaging:createSignedMimeBodyPart:Exit (DEBUG)
    2010.09.29 in 05:55:11:226: Thread-32: B2B - MimePackaging:createEncryptedMimeBodyPart (DEBUG): enter
    2010.09.29 in 05:55:11:230: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): before setProtocolVersion...
    2010.09.29 in 05:55:11:233: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setProtocolVersion Leaving...
    2010.09.29 in 05:55:11:236: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setEncryptionAlgorithm using algorithm name entered...
    2010.09.29 in 05:55:11:238: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setEncryptionAlgorithm using algorithm name Leaving...
    2010.09.29 in 05:55:11:241: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): before setEncryptionCertificate...
    2010.09.29 in 05:55:11:244: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): before setEncodingType...
    2010.09.29 in 05:55:11:246: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): setEncodingType Leaving...
    2010.09.29 in 05:55:11:249: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): update of seizure...
    2010.09.29 in 05:55:11:251: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): update of starting...
    2010.09.29 in 05:55:11:254: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): entry to decode...
    2010.09.29 in 05:55:11:259: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.Encoding:Encoding (DEBUG): entry to decode...
    2010.09.29 in 05:55:11:261: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): setEncryptionCertificate Leaving...
    2010.09.29 in 05:55:11:264: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): entered to encrypt...
    2010.09.29 in 05:55:11:276: Thread-32: B2B - oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging (DEBUG): encrypt Leaving...
    2010.09.29 in 05:55:11:278: Thread-32: B2B - MimePackaging:createEncryptedMimeBodyPart:Exit (DEBUG)
    2010.09.29 in 05:55:11:281: Thread-32: B2B - MimePackaging:applySecurity:Exit (DEBUG)
    2010.09.29 in 05:55:11:284: Thread-32: B2B - MimePackaging:createMimeMessage:Exit (DEBUG)
    2010.09.29 in 05:55:11:287: Thread-32: B2B - MimePackaging:getMimeContent (DEBUG): enter
    2010.09.29 in 05:55:11:290: Thread-32: B2B - MimePackaging:getMimeContent:Exit (DEBUG)
    2010.09.29 in 05:55:11:293: Thread-32: B2B - MimePackaging:pack:Exit (DEBUG)
    2010.09.29 in 05:55:11:296: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (DEBUG) Invoking transmit previously
    2010.09.29 in 05:55:11:298: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.Request:preTransmit entry
    2010.09.29 in 05:55:11:301: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:preTransmit (DEBUG) Log & update of Tables in database
    2010.09.29 in 05:55:11:303: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:preTransmit (DEBUG) update the Message Table with the status of the message line waiting for incoming receipt
    2010.09.29 in 05:55:11:305: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.Request:preTransmit create a native event for the request Message outgoing table row
    2010.09.29 in 05:55:11:308: Thread-32: B2B - Enter oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertNativeEvtTblRow(3_params) (DEBUG)
    2010.09.29 in 05:55:11:311: Thread-32: B2B - (DEBUGGING) = < 25@NOGT > oracle.tip.adapter.b2b.msgproc.DbAccess:insertNativeEvtTblRow msgInfo.id
    2010.09.29 in 05:55:11:315: Thread-32: B2B - id oracle.tip.adapter.b2b.msgproc.DbAccess:protocl (DEBUG) set A
    2010.09.29 in 05:55:11:318: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.DbAccess (DEBUG):

    * DbAccess:insertNativeEvtTblRow = null protocolCollabId
    2010.09.29 in 05:55:11:406: Thread-32: B2B - output oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertNativeEvtTblRow(3_params) (DEBUG)
    2010.09.29 in 05:55:11:415: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.Request:preTransmit line from the event Table create for attempts of Message
    2010.09.29 in 05:55:11:418: Thread-32: B2B - timeToAck oracle.tip.adapter.b2b.msgproc.Request:preTransmit (DEBUG) = Thu Jan 01 02:00:00 GMT + 00:00 1970
    2010.09.29 in 05:55:11:423: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertEvtTblRow entry
    2010.09.29 in 05:55:11:426: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertEvtTblRow Event Type = 2
    2010.09.29 in 05:55:11:428: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertEvtTblRow, EventId = 12
    2010.09.29 in 05:55:11:431: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertEvtTblRow Id = 25
    2010.09.29 in 05:55:11:436: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertEvtTblRow output
    2010.09.29 in 05:55:11:441: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.Request:preTransmit Current TimeStamp isWed Sep 29 05:55:11 GMT + 00:00 2010
    2010.09.29 in 05:55:11:443: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:preTransmit (DEBUG) Retry should happen to Wed Sep 29 07:55:11 GMT + 00:00 2010
    2010.09.29 in 05:55:11:446: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.Request:preTransmit business transaction info name revision null null
    2010.09.29 in 05:55:11:448: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.Request:preTransmit output
    2010.09.29 in 05:55:11:451: Thread-32: B2B - validation DBContext (DEBUG): enter
    2010.09.29 in 05:55:11:463: Thread-32: B2B - validation DBContext (DEBUG): Transaction.commit)
    2010.09.29 in 05:55:11:465: Thread-32: B2B - (DEBUGGING) DBContext commit: leave
    2010.09.29 in 05:55:11:468: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (DEBUG) call to send the message
    2010.09.29 in 05:55:11:471: Thread-32: B2B - name (DEBUG) Protocol: HTTPS
    2010.09.29 in 05:55:11:474: Thread-32: B2B - (DEBUG) name of the Version: 1.1
    2010.09.29 in 05:55:11:477: Thread-32: B2B - the end point (DEBUG): https://dev-nog.server:443/b2b/transportServlet
    2010.09.29 in 05:55:11:480: Thread-32: B2B - (DEBUG) using SSL
    2010.09.29 in 05:55:11:483: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.transport.TransportInterface:send URL: HTTPS://dev-nog.server:443/B2B/TRANSPORTSERVLET
    2010.09.29 in 05:55:11:486: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.transport.TransportInterface:send endpoint: 502 https://dev-nog.server.com:443/b2b/transportServlet
    2010.09.29 in 05:55:11:488: Thread-32: B2B - (DEBUG)
    Protocol = HTTPS
    Version = 1.1
    Transport header
    Content-Transfer-Encoding: binary
    Message-ID: < 25@NOGT >
    MIME-version: 1.0
    Action_name:Process_OAG_7_2_ProcessPo
    From: SOBER
    Disposition-Notification-To:[email protected]
    AS2-to: Test11G
    User-Agent: AS2 Server
    Date: Wed, 29 Sep 2010 05:55:09 GMT
    Disposition-Notification-Options: signed-receipt-protocol = required, pkcs7-signature; Signed-receipt-micalg = required, sha1
    DOCTYPE_NAME:ProcessPo
    FROM_PARTY:NOGT
    DOCTYPE_REVISION:7.0
    TO_PARTY:Test11G
    AS2 - from: SOBER
    AS2-Version: 1.1
    Content-Type: application / pkcs7-mime; SMIME-type = 'enveloped data '.

    Parameters
    -list properties-
    http.sender.Timeout = 0

    2010.09.29 in 05:55:11:624: Thread-32: B2B - (DEBUG) system null null null value realm username
    2010.09.29 in 05:55:11:637: Thread-32: B2B - (WARNING)
    The message of exceptional Transport
    Transport error code is OTA-HTTP-SEND-1005
    StackTrace oracle.tip.transport.TransportException: [IPT_HttpSendConnectionRefused] HTTP connection is refused.
    at oracle.tip.transport.TransportException.create(TransportException.java:91)
    at oracle.tip.transport.basic.HTTPSender.send(HTTPSender.java:619)
    at oracle.tip.transport.b2b.B2BTransport.send(B2BTransport.java:311)
    at oracle.tip.adapter.b2b.transport.TransportInterface.send(TransportInterface.java:1034)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1758)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:976)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1167)
    at oracle.tip.adapter.b2b.transport.AppInterfaceListener.onMessage(AppInterfaceListener.java:141)
    at oracle.tip.transport.basic.FileSourceMonitor.processMessages(FileSourceMonitor.java:903)
    at oracle.tip.transport.basic.FileSourceMonitor.run(FileSourceMonitor.java:317)
    Caused by: java.net.ConnectException: connection refused
    at java.net.PlainSocketImpl.socketConnect (Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    at java.net.Socket.connect(Socket.java:464)
    at java.net.Socket.connect(Socket.java:414)
    at java.net.Socket. < init > (Socket.java:310)
    at java.net.Socket. < init > (Socket.java:154)
    to HTTPClient.HTTPConnection$ EstablishConnection.run (HTTPConnection.java:3916)

    2010.09.29 in 05:55:11:640: Thread-32: B2B - oracle.tip.adapter.b2b.transport.TransportInterface:send (DEBUG) error in send message
    2010.09.29 in 05:55:11:642: Thread-32: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (INFORMATION) request the Transmission of the Message failed
    2010.09.29 in 05:55:11:644: Thread-32: B2B - beginTransaction (DEBUG) DBContext: enter
    2010.09.29 in 05:55:11:647: Thread-32: B2B - beginTransaction (DEBUG) DBContext: Transaction.begin)
    2010.09.29 in 05:55:11:649: Thread-32: B2B - beginTransaction (DEBUG) DBContext: leave
    2010.09.29 in 05:55:11:651: Thread-32: B2B - connection HTTP (DEBUG) oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab [IPT_HttpSendConnectionRefused] is denied.

    Connection refused
    2010.09.29 in 05:55:11:662: Thread-32: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:notifyApp retry value < = 0, so sending exception to IP_IN_QUEUE
    2010.09.29 in 05:55:11:666: Thread-32: B2B - enter engine: notifyApp (DEBUG)
    2010.09.29 in 05:55:11:702: Thread-32: B2B - notifyApp:notifyApp (DEBUG) the exception ip message queue:
    < exception xmlns = "http://integration.oracle.com/B2B/Exception" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" >
    < correlationId > 25 < / correlationId >
    < b2bMessageId > 25 < / b2bMessageId >
    < errorCode > AIP-50079 < / errorCode >
    < errorText > Transport error: [IPT_HttpSendConnectionRefused] HTTP connection is refused.

    Denied connection < / errorText >
    < errorDescription >
    <! [CDATA [Info Machine: (usmtnz - dinfwi12.dev.NOG.org)]]

    Transport error: [IPT_HttpSendConnectionRefused] HTTP connection is refused.

    Denied connection]] >
    < / errorDescription >
    < errorSeverity > 2 < / errorSeverity >
    < / exception >
    2010.09.29 in 05:55:11:717: Thread-32: B2B - output engine: notifyApp (DEBUG)
    2010.09.29 in 05:55:11:719: Thread-32: B2B - validation DBContext (DEBUG): enter
    2010.09.29 in 05:55:11:724: Thread-32: B2B - validation DBContext (DEBUG): Transaction.commit)
    2010.09.29 in 05:55:11:727: Thread-32: B2B - (DEBUGGING) DBContext commit: leave
    2010.09.29 in 05:55:11:729: Thread-32: B2B - (DEBUGGING) oracle.tip.adapter.b2b.msgproc.Request:outgoingRequest output
    2010.09.29 in 05:55:11:732: Thread-32: B2B - oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage (INFORMATION):
    REQUEST MESSAGE *.
    Exchange Protocol: AS2 Version 1.1
    Transport protocol: HTTPS
    Unique Message ID: < 25@NOGT >
    Partner: Test11G
    Signed message: RSA
    Encrypted payload: 3DES
    Attachment: no
    REQUEST MESSAGE *.

    2010.09.29 in 05:55:11:735: Thread-32: B2B - exit (INFORMATION) oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage
    2010.09.29 in 05:55:11:737: Thread-32: B2B - validation DBContext (DEBUG): enter
    2010.09.29 in 05:55:11:739: Thread-32: B2B - (DEBUGGING) DBContext commit: leave
    2010.09.29 in 05:55:11:744: Thread-32: B2B - processOutgoingMessage oracle.tip.adapter.b2b.transport.AppInterfaceListener:onMessage (DEBUG) has been a success, transportation back to the transport layer ACK

    Thanks in advance

    Published by: B2B_GoToGuY on September 28, 2010 23:17

    If I am using 11 G andrtp is g 11 but on rtp side if they configure SSL, it is mandatory to do it on our side too?

    No, it is not required to activate SSL on your side, but must configure identity and trsut on your side.

    Any update on my regular issue (the main issue of the forum)?

    You mentioned that you send messages message of 10 g and 11 g and according to the newspapers you ship to URL - b2b / https://dev-nog.server:443 / transportServlet

    If there are few things that I see as a problem-

    1. you must use the URL https://hostname:soa_server_ssl_port/b2b/httpReceiver instead of https://dev-nog.server:443/b2b/transportServlet
    2 SOA server SSL port must be enabled (SSL must be enabled on the server of SOA)
    3. you must configure portfolio from 10 g to contain 11 g server trust cert

    Kind regards
    Anuj

  • Errors Misslanious

    Hi B2BGurus,

    Every day we receive a misslenious error in our b2b and showing an "Identification of Document protocol error" error if we open thread message show as "Date = Thu, 22 Sep 2010 04:15:25 GMT.
    Server = Microsoft-IIS/6.0
    X-Powered-By = ASP .NET
    Content-Length = 0

    If we open the payload its complete Blanck.
    Here is the log file:
    Protocol = HTTP
    Version = 1.1
    Transport header
    Content-Transfer-Encoding: binary
    Message-ID: < 28957@EMRSN >
    MIME-version: 1.0
    Action_name:Process_OAG_9_0_ProcessPo
    From: EMRSN
    Disposition-Notification-To:[email protected]
    AS2-to: BENCHMARK
    User-Agent: AS2 Server
    Date: Thu, 22 Sep 2010 04:15:06 GMT
    Disposition-Notification-Options: signed-receipt-protocol = required, pkcs7-signature; Signed-receipt-micalg = required, sha1
    DOCTYPE_NAME:ProcessPo
    FROM_PARTY:EMRSN
    DOCTYPE_REVISION:9.0
    TO_PARTY:BENCHMARK
    AS2 - from: EMRSN
    AS2-Version: 1.1
    Content-Type: application / pkcs7-mime; SMIME-type = 'enveloped data '.

    Parameters
    -list properties-
    http.sender.Timeout = 0

    2010.09.22 to 04:15:20:128: Thread-26: B2B - (DEBUG) system null null null value realm username
    2010.09.22 to 04:15:20:154: connection TCP of RMI (3002) - 10.16.72.44: B2B - setFromPartyId() calling (DEBUG), changing the TPName: Penske Type: AS2 identifier value: PSKLUSB2BAS2P to TPName: Penske Type: AS2 identifier value: PSKLUSB2BAS2P
    2010.09.22 to 04:15:20:244: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 11
    802B3C190ADB18CBE044001517B8F214-38-1-5
    2010.09.22 to 04:15:24:200: connection TCP of RMI (3002) - 10.16.72.44: B2B - ID of the sender (DEBUG) AccessRepo:findRequestBusinessMessageByControlNumber = value 6AD4798E0A6D6C2BE04400144FA11B5C-35-1-identifier: EMRSN
    2010.09.22 to 04:15:25:366: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:processParty() (DEBUG) Begin...
    2010.09.22 to 04:15:25:374: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:processParty() (DEBUG) Emerson is hosted party
    2010.09.22 to 04:15:25:377: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUGGING):processParty() end oracle.tip.adapter.b2b.tpa.RepoDataAccessor...
    2010.09.22 to 04:15:25:380: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG) after the call to processparty with: TPName: Emerson Type: value of the AS2 identifier: EMRSN
    2010.09.22 to 04:15:25:383: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUGGING):processTPA() oracle.tip.adapter.b2b.tpa.TPAProcessor PARTIES (after the call to processParty):
    initial: null
    from: TPName: Emerson Type: value of the AS2 identifier: EMRSN
    to: TPName: Penske Type: value of the AS2 identifier: PSKLUSB2BAS2P
    final: null
    opening: TPName: Emerson Type: value of the AS2 identifier: EMRSN
    2010.09.22 to 04:15:25:386: connection TCP of RMI (3002) - 10.16.72.44: B2B - docTypeName oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG): 997-docTypeRevision: 5020
    2010.09.22 to 04:15:25:401: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG): Process_X12_5020_997 actionRevision: 5.0
    2010.09.22 to 04:15:25:404: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getCollaborationDetails() (DEBUG) Begin... Name of activity: Process_X12_5020_997 activity Version: 5.0
    2010.09.22 to 04:15:25:412: connection TCP of RMI (3002) - 10.16.72.44: B2B - eventName oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG): < null >
    2010.09.22 to 04:15:25:417: connection TCP of RMI (3002) - 10.16.72.44: B2B - messageType:3 oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG)
    2010.09.22 to 04:15:25:434: connection TCP of RMI (3002) - 10.16.72.44: B2B - setMode() calling (DEBUG), changing from-1 to 2
    2010.09.22 to 04:15:25:437: connection TCP of RMI (3002) - 10.16.72.44: B2B - setInitiatingPartyId() calling (DEBUG), changing the TPName: Emerson Type: AS2 identifier value: EMRSN to TPName: Penske Type: AS2 identifier value: PSKLUSB2BAS2P
    2010.09.22 to 04:15:25:441: connection TCP of RMI (3002) - 10.16.72.44: B2B - cpaID oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG) = 199
    2010.09.22 to 04:15:25:444: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG) name TPA: Emerson_Penske_Production_Agreement
    2010.09.22 to 04:15:25:447: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG) name TPA: Emerson_Penske_Production_Agreement
    2010.09.22 to 04:15:25:449: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG) not the test unit
    2010.09.22 to 04:15:25:464: connection TCP of RMI (3002) - 10.16.72.44: B2B - direction of oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() (DEBUG) 2
    2010.09.22 to 04:15:25:467: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() Emerson_Penske_Production_Agreement; * ; TPName: Emerson Type: value of the AS2 identifier: EMRSN; * ; TPName: Penske Type: value of the AS2 identifier: PSKLUSB2BAS2P; * ; TPName: Penske Type: value of the AS2 identifier: PSKLUSB2BAS2P; * ; null; * ; Process_X12_5020_997; * ; null; * ; null; * ; 3; * ; 2
    2010.09.22 to 04:15:25:470: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) Begin...
    2010.09.22 to 04:15:25:472: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG)
    Party-> AS2 identifier-EMRSN-Emerson-null
    Part-> AS2 Collaboration identifier-PSKLUSB2BAS2P-Penske-null-> agree name of null-> Emerson_Penske_Production_Agreement
    2010.09.22 to 04:15:25:494: connection TCP of RMI (3002) - 10.16.72.44: B2B - pList.size () oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = 14
    2010.09.22 to 04:15:25:498: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 0
    2010.09.22 to 04:15:25:501: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A8F0
    2010.09.22 to 04:15:25:511: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_850
    2010.09.22 to 04:15:25:515: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 0
    2010.09.22 to 04:15:25:518: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 1
    2010.09.22 to 04:15:25:522: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_52CA
    2010.09.22 to 04:15:25:531: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_855
    2010.09.22 to 04:15:25:535: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 1
    2010.09.22 to 04:15:25:537: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 2
    2010.09.22 to 04:15:25:540: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A8FC
    2010.09.22 to 04:15:25:552: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_997
    2010.09.22 to 04:15:25:555: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() isInitiator = false
    2010.09.22 to 04:15:25:565: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() fromTPP = EMRSNfromParty = Emerson
    2010.09.22 to 04:15:25:593: connection TCP of RMI (3002) - 10.16.72.44: B2B - setFromPartyId() calling (DEBUG), changing from null to TPName: Emerson Type: value of the AS2 identifier: EMRSN
    2010.09.22 to 04:15:26:908: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 2
    2010.09.22 to 04:15:26:911: Thread-26: B2B - (DEBUG)
    Protocol = HTTP
    Version = HTTP/1.1
    Transport header
    Date: Thu, 22 Sep 2010 04:15:25 GMT
    X Powered - By:ASP .NET
    Server: Microsoft-IIS/6.0
    Content-Length: 0

    2010.09.22 to 04:15:26:913: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 3
    2010.09.22 to 04:15:26:917: Thread-26: B2B - oracle.tip.adapter.b2b.transport.TransportInterface:send (DEBUGGING) Message sent successfully
    2010.09.22 to 04:15:26:920: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_52D6
    2010.09.22 to 04:15:26:922: Thread-26: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (INFORMATION) send successfully!, communicable sucessfully request Message
    2010.09.22 to 04:15:26:925: Thread-26: B2B - oracle.tip.adapter.b2b.msgproc.Request:outgoingRequestPostColab (DEBUG) call postTransmit for forward after processing of the request message
    2010.09.22 to 04:15:26:928: Thread-26: B2B - beginTransaction (DEBUG) DBContext: enter
    2010.09.22 to 04:15:26:931: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_856
    2010.09.22 to 04:15:26:933: Thread-26: B2B - beginTransaction (DEBUG) DBContext: Transaction.begin)
    2010.09.22 to 04:15:26:936: Thread-26: B2B - beginTransaction (DEBUG) DBContext: leave
    2010.09.22 to 04:15:26:938: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 3
    2010.09.22 to 04:15:26:941: Thread-26: B2B - oracle.tip.adapter.b2b.msgproc.Request: postTransmit (DEBUG) entry
    2010.09.22 to 04:15:26:944: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 4
    2010.09.22 to 04:15:26:946: Thread-26: B2B - oracle.tip.adapter.b2b.msgproc.Request: postTransmit (DEBUG) AckMode is SYNC
    2010.09.22 to 04:15:26:948: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_52D0
    2010.09.22 to 04:15:26:951: Thread-26: B2B - Enter oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertNativeEvtTblRow(2_params) (DEBUG)
    2010.09.22 to 04:15:26:956: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_810
    2010.09.22 to 04:15:26:959: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 4
    2010.09.22 to 04:15:26:962: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 5
    2010.09.22 to 04:15:26:965: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A902
    2010.09.22 to 04:15:26:970: Thread-26: B2B - output oracle.tip.adapter.b2b.msgproc.DbAccess:DbAccess:insertNativeEvtTblRow(2_params) (DEBUG)
    2010.09.22 to 04:15:26:974: Thread-26: B2B - oracle.tip.adapter.b2b.msgproc.Request: postTransmit (DEBUG) update the Message Table with the status of the message line waiting for incoming receipt
    2010.09.22 to 04:15:26:977: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_997
    2010.09.22 to 04:15:26:980: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() isInitiator = true
    2010.09.22 to 04:15:26:984: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() fromParty IS NOT initParty TPName: Emerson Type: AS2 identifier value: EMRSN TPName: Penske Type: AS2 identifier value: PSKLUSB2BAS2P
    2010.09.22 to 04:15:26:986: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 6
    2010.09.22 to 04:15:26:989: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A8F6
    2010.09.22 to 04:15:26:992: Thread-26: B2B - oracle.tip.adapter.b2b.msgproc.Request: postTransmit (DEBUG) Commit
    2010.09.22 to 04:15:26:995: Thread-26: B2B - validation DBContext (DEBUG): enter
    2010.09.22 to 04:15:27:002: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_860
    2010.09.22 to 04:15:27:005: Thread-26: B2B - validation DBContext (DEBUG): Transaction.commit)
    2010.09.22 to 04:15:27:008: Thread-26: B2B - (DEBUGGING) DBContext commit: leave
    2010.09.22 to 04:15:27:012: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 6
    2010.09.22 to 04:15:27:015: Thread-26: B2B - beginTransaction (DEBUG) DBContext: enter
    2010.09.22 to 04:15:27:017: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 7
    2010.09.22 to 04:15:27:020: Thread-26: B2B - beginTransaction (DEBUG) DBContext: Transaction.begin)
    2010.09.22 to 04:15:27:023: Thread-26: B2B - beginTransaction (DEBUG) DBContext: leave
    2010.09.22 to 04:15:27:026: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A8EE
    2010.09.22 to 04:15:27:029: Thread-26: B2B - input (INFORMATION) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage
    2010.09.22 to 04:15:27:038: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_850
    2010.09.22 to 04:15:27:042: Thread-26: B2B - oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage (DEBUG) Identify Business Protocol
    2010.09.22 to 04:15:27:045: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 7
    2010.09.22 to 04:15:27:048: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:identifyExchange entry
    2010.09.22 to 04:15:27:052: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 8
    2010.09.22 to 04:15:27:056: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.as2.AS2ExchangePlugin:AS2ExchangePlugin:identifyExchange output
    2010.09.22 to 04:15:27:059: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A8F4
    2010.09.22 to 04:15:27:062: Thread-26: B2B - oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage (DEBUG) unpack using the specific package class of BP
    2010.09.22 to 04:15:27:065: Thread-26: B2B - MimePackaging (DEBUG): out of the box: enter
    2010.09.22 to 04:15:27:068: Thread-26: B2B - MimePackaging:doUnpack (DEBUG): enter
    2010.09.22 to 04:15:27:071: Thread-26: B2B - MimePackaging:unpackNonMimeMessage (DEBUG): enter
    2010.09.22 to 04:15:27:073: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_860
    2010.09.22 to 04:15:27:076: Thread-26: B2B - MimePackaging:unpackNonMimeMessage (DEBUG): encoding = UTF-8
    2010.09.22 to 04:15:27:079: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 8
    2010.09.22 to 04:15:27:082: Thread-26: B2B - MimePackaging:unpackNonMimeMessage:oracle.tip.adapter.b2b.packaging.Component@155820b (DEBUG)
    2010.09.22 to 04:15:27:084: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 9
    2010.09.22 to 04:15:27:088: Thread-26: B2B - MimePackaging:unpackNonMimeMessage:Exit (DEBUG)
    2010.09.22 to 04:15:27:091: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_52C8
    2010.09.22 to 04:15:27:093: Thread-26: B2B - MimePackaging (DEBUG): out of the box: output
    2010.09.22 to 04:15:27:096: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage decode the Message entering the B2B Message
    2010.09.22 to 04:15:27:099: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:GenericExchangePlugin:decodeIncomingMessage enter
    2010.09.22 to 04:15:27:102: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_855
    2010.09.22 to 04:15:27:106: Thread-26: B2B - oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:GenericExchangePlugin:decodeIncomingMessage (DEBUGGING) of the components number = 1
    2010.09.22 to 04:15:27:110: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 9
    2010.09.22 to 04:15:27:113: Thread-26: B2B - oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:decodeIncomingMessage (DEBUG) Protocol of Transport = {HTTP}
    2010.09.22 to 04:15:27:116: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 10
    2010.09.22 to 04:15:27:119: Thread-26: B2B - remote host (DEBUG) name oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:decodeIncomingMessage = null
    2010.09.22 to 04:15:27:122: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A8FA
    2010.09.22 to 04:15:27:125: Thread-26: B2B - hostname (DEBUG) oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:decodeIncomingMessage = null
    2010.09.22 to 04:15:27:128: Thread-26: B2B - setInitiatingPartyId() calling (DEBUG), changing to TPName null: null Type: value of the generic identifier: 127.0.0.1
    2010.09.22 to 04:15:27:132: Thread-26: B2B - (DEBUGGING) = 127.0.0.1 oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:decodeIncomingMessage fromParty
    2010.09.22 to 04:15:27:135: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_997
    2010.09.22 to 04:15:27:138: Thread-26: B2B - setFromPartyId() calling (DEBUG), changing to TPName null: null Type: value of the generic identifier: 127.0.0.1
    2010.09.22 to 04:15:27:144: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() isInitiator = true
    2010.09.22 to 04:15:27:147: Thread-26: B2B - setToPartyId() calling (DEBUG), changing to TPName null: null Type: value of the generic identifier: 127.0.0.1
    2010.09.22 to 04:15:27:151: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() IS initParty toParty
    2010.09.22 to 04:15:27:154: Thread-26: B2B - oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:GenericExchangePlugin:decodeIncomingMessage (DEBUG) NULL security information
    2010.09.22 to 04:15:27:158: Thread-26: B2B - output oracle.tip.adapter.b2b.exchange.generic.GenericExchangePlugin:GenericExchangePlugin:decodeIncomingMessage (DEBUG)
    2010.09.22 to 04:15:27:162: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() toTPP = PSKLUSB2BAS2PtoParty = Penske
    2010.09.22 to 04:15:27:165: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:processHubMessage entry
    2010.09.22 to 04:15:27:167: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processHubMessage toTP 127.0.0.1
    2010.09.22 to 04:15:27:170: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processHubMessage hubUrl null
    2010.09.22 to 04:15:27:172: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:processHubMessage output
    2010.09.22 to 04:15:27:175: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage ProtocolCollabId = null
    2010.09.22 to 04:15:27:178: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage CollaborationName null
    2010.09.22 to 04:15:27:180: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:checkDuplicate entry
    2010.09.22 to 04:15:27:183: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:checkDuplicate check post non - RosettaNet
    2010.09.22 to 04:15:27:189: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:checkDuplicate output
    2010.09.22 to 04:15:27:192: Thread-26: B2B - oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage (DEBUG) Protocol of Collaboration Id: null
    2010.09.22 to 04:15:27:194: connection TCP of RMI (3002) - 10.16.72.44: B2B - setToPartyId() calling (DEBUG), changing from null to TPName: Penske Type: value of the AS2 identifier: PSKLUSB2BAS2P
    2010.09.22 to 04:15:27:197: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:identifyIncomingDocument entry
    2010.09.22 to 04:15:27:231: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:identifyIncomingDocument errcode = SetData failed - adjourned CECToolsException - HRESULT [30005] description [does not have the size of the blob: must be greater then zero]
    2010.09.22 to 04:15:27:235: Thread-26: B2B - com.edifecs.shared.jni.JNIException (ERROR): SetData - lifting - CECToolsException HRESULT failure [30005] description [does not have the size of the blob: must be greater then zero]
    at com.edifecs.shared.jni.xdata.INativeToXData.SetDataNative (Native Method)
    at com.edifecs.shared.jni.xdata.INativeToXData.SetData (unknown Source)
    at com.edifecs.shared.jni.xdata.INativeToXData.SetData (unknown Source)
    at oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin.identifyIncomingDocument(EDIDocumentPlugin.java:367)
    at oracle.tip.adapter.b2b.engine.Engine.identifyDocument(Engine.java:3226)
    at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1666)
    at oracle.tip.adapter.b2b.msgproc.Request.postTransmit(Request.java:2384)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1827)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:976)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1167)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage (MsgListener.java:833)
    at oracle.tip.adapter.b2b.data.MsgListener.run (MsgListener.java:400)
    at java.lang.Thread.run(Thread.java:534)

    2010.09.22 to 04:15:27:238: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument entry
    2010.09.22 to 04:15:27:249: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument non - XML payload
    2010.09.22 to 04:15:27:252: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument iDoc ECS = null
    2010.09.22 to 04:15:27:254: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument continue
    2010.09.22 to 04:15:27:257: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument non - XML payload
    2010.09.22 to 04:15:27:259: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument iDoc ECS = null
    2010.09.22 to 04:15:27:262: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument continue
    2010.09.22 to 04:15:27:265: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument non - XML payload
    2010.09.22 to 04:15:27:267: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument iDoc ECS = null
    2010.09.22 to 04:15:27:270: connection TCP of RMI (3002) - 10.16.72.44: B2B - setMode() calling (DEBUG), from 2 to 1
    2010.09.22 to 04:15:27:273: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument continue
    2010.09.22 to 04:15:27:275: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 10
    2010.09.22 to 04:15:27:278: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument non - XML payload
    2010.09.22 to 04:15:27:280: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 11
    2010.09.22 to 04:15:27:283: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument iDoc ECS = null
    2010.09.22 to 04:15:27:286: connection TCP of RMI (3002) - 10.16.72.44: B2B - PPT oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = TradingPartnerParticipant_A900
    2010.09.22 to 04:15:27:288: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument continue
    2010.09.22 to 04:15:27:291: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument non - XML payload
    2010.09.22 to 04:15:27:293: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument iDoc ECS = null
    2010.09.22 to 04:15:27:296: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument continue
    2010.09.22 to 04:15:27:298: connection TCP of RMI (3002) - 10.16.72.44: B2B - actionName oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG) = Process_X12_5020_997, tppActionName = Process_X12_5020_997
    2010.09.22 to 04:15:27:301: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.document.custom.CustomDocumentPlugin:identifyIncomingDocument output
    2010.09.22 to 04:15:27:303: connection TCP of RMI (3002) - 10.16.72.44: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() isInitiator = false
    2010.09.22 to 04:15:27:306: Thread-26: B2B - Error (ERROR) -: AIP-50083: Protocol for the identification of the Document error
    at oracle.tip.adapter.b2b.engine.Engine.identifyDocument(Engine.java:3245)
    at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1666)
    at oracle.tip.adapter.b2b.msgproc.Request.postTransmit(Request.java:2384)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1827)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:976)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1167)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage (MsgListener.java:833)
    at oracle.tip.adapter.b2b.data.MsgListener.run (MsgListener.java:400)
    at java.lang.Thread.run(Thread.java:534)

    2010.09.22 to 04:15:27:309: Thread-26: B2B - (DEBUGGING) oracle.tip.adapter.b2b.engine.Engine:handleExceptionBeforeIncomingTPA entry
    2010.09.22 to 04:15:27:312: Thread-26: B2B - oracle.tip.adapter.b2b.engine.Engine:XXX (DEBUG): Enter handleInboundException
    2010.09.22 to 04:15:27:460: connection TCP of RMI (3002) - 10.16.72.44: B2B - oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() (DEBUG): 13

    In the paper, it seems that the message comes from BENCHMARK. You can cross check with your TP and confirm if they use Microsoft-IIS server? Being a production issue, I suggest you to save a SR with support.

    Kind regards
    Anuj

  • Re: Queries per session

    Hi all

    Operating system: HP - UX
    Database server: Oracle 10 g

    I'm just trying to find the queries per session. I use V$ sql for the query and V$ session to get the sid. Now, I don't get any common column helps I can join these two columns.

    Recognizing you all.

    Concerning
    Martine

    Hi all

    using this application you can find the SQL running for each session
    but to use this query, you must know the process id of the operating system, which may be to get or the ps command or if you want to know the name of wise schema then you must first extract the process of operating system for this session by joining v$ session and v$ process as

    Select a.username, b.spid from session $ v a, v$ process b where a.paddr = b.addr and a.username is not null and a.username = 'SCOTT';

    If you want to see the session created by scott schema and its pid OS i.e., SPID, and then you can find the sql code of this session as

    Select a.sql_text from v$ sql a, v$ session b, v$ process c where a.sql_id = b.sql_id and b.paddr = c.addr and c.spid = '1234';

    where 1234 is the spid of session of schema scott at the os level.

    Mohd Farhan.
    consultant of the database.

  • I can access HttpServletRequest to a subclass of CustomizationClass?

    I created my own CustomizationClass for persistence customization by the user for the user interface by user name components.
    Like our application doesn't use the ADF security, a CustomizationClass subclass is created to replace GetValue to return the username stored in HttpServletRequest as follows:

    public String [] getValue (RestrictedSession restrictedSession,
    MetadataObject metadataObject) {}
    String [] value = null;
    FacesContext context = FacesContext.getCurrentInstance (); NoClassDefFoundError here
    If (context! = null & & context.getExternalContext ()! = null) {}
    HttpServletRequest httpRequest =
    (HttpServletRequest) context.getExternalContext () .getRequest ();
    String UtilisateurDistant = httpRequest.getRemoteUser ();
    If (remoteUser! = null) {}
    value = new String() {UtilisateurDistant};
    }
    }
    Returns the value;
    }

    However, when I run the application, the application server have not seen the FacesContext class:

    < 21 December 2009 2:39:00 PM MST > < error > < HTTP > < BEA-101020 > < [ServletContext@15391
    [099 app:my_application1 module: myapp path: / myapp spec-version: 2.5] Ser
    vlet failed with Exception
    java.lang.NoClassDefFoundError: javax/faces/context/FacesContext
    at myapp.mds.UserCustomization.getValue (UserCustomization.java:28)
    at oracle.mds.internal.cust.CustomizationUtils.appendCLs(CustomizationUtils.java:456)
    at oracle.mds.internal.cust.CustomizationUtils.getCLList(CustomizationUtils.java:282)
    at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:2849)
    at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1205)
    Truncated. check the log file full stacktrace

    Caused by: java.lang.ClassNotFoundException: javax.faces.context.FacesContext
    to weblogic.utils.classloaders.GenericClassLoader.findLocalClass (generic
    ClassLoader.java:296)
    to weblogic.utils.classloaders.GenericClassLoader.findClass (GenericClass
    Loader.Java:269)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    to weblogic.utils.classloaders.GenericClassLoader.loadClass (GenericClass
    Loader.Java:177)
    Truncated. check the log file full stacktrace

    Is there another way to access the HttpServletRequest attribute without reference FacesContext of CustomizationClass?

    Published by: user12158365 on December 21, 2009 14:07

    Hello

    You can pass information in the SDM session using a Servlet filter. So assuming that the servlet filter accesses the user name to make it available to the session MDS, in the servlet filter do you...

     ADFContext adfContext = ADFContext.getCurrent();
     MDSSession mdsSess = null;
     if( adfContext != null) { mdsSess = (MDSSession) mADFContext.getMDSSessionAsObject(); }
     ...
    
     if (mdsSess != null) {
    
         mdsSess.setProperty("username", usernameValue); 
    

    In your customization class, you go then this property as shown in the next...

    public String[] getValue(RestrictedSession rs,
                                 MetadataObject metadataObject) { 
    
       String user = (String)rs.getProperty("username");
       ... work with it ...
    
    }
    

    Frank

  • the java code in JDeveloper 10.1.3.3.0 changes is not running

    I am currently working on the implementation of the Siebel Self Service 8.1.1.1 and I have a question. Hope someone answers it.


    Sources for Siebel self-service application files have been extracted into a directory (for example C:\sba81\SelfService\Sia)

    In doing so, I end up having the model directory and ViewController.

    I open the file SelfService.jws with JDeveloper 10.1.3.3.0 (I use this version for Jdeveloper because this is the only version supported for Siebel self-service)

    I open the C:\sba81\SelfService\Sia\Model\classes\oracle\apps\ss\base\model\security\SiebelWSHandler.java file to make some changes.

    I have recompile and run the application.

    The problem is that none of the changes are running regardless of the applied changes.

    For example in the SiebelWSHandler there is this function

    protected String findSiebelUserName() {}
    String username = null;
    {if (isStatefulAnonymousSession ())}
    username = ConfigurationCacheManager.get ("SIEBEL_PROXY_USER_NAME");
    log.info ("findSiebelUserName, proxy username =" + username);
    } else {}
    AppSession appSes = getAppSession();
    username = appSes.getUserName ();
    log.info ("findSiebelUserName, true username =" + username);
    }
    Returns the user name;
    }

    I just add a line to the code as follows


    protected String findSiebelUserName() {}

    String username = null;
    username = "GUESTCST";

    {if (isStatefulAnonymousSession ())}

    username = ConfigurationCacheManager.get ("SIEBEL_PROXY_USER_NAME");

    log.info ("findSiebelUserName, proxy username =" + username);

    } else {}

    AppSession appSes = getAppSession();

    username = appSes.getUserName ();

    log.info ("findSiebelUserName, true username =" + username);

    }

    Returns the user name;

    }

    I have recompile and run the program. The added line is not run. the variable usename is not reset to GUESTCST and nothing else.

    I use Debug, add a breakpoint and run the code line-by-line (using F8). The variable username never gets reset to GUESTCST...

    any help will be much appreciated.

    Hello

    Check the youe ViewController\public_html\WEB-INF folder. Are there any classes folder, if so remove it. And then run your application and check

    Kind regards
    Vikram

  • all the privileges of a user

    Hello
    on 10g
    any request to see all the privileges of a user when logged in sysdba?

    I can not connect with this user, but I want to see his privileges if he's had enough.
    Thank you.

    There are several views available to check privileges, for example:

    DBA_AQ_AGENT_PRIVS
    DBA_COL_PRIVS
    DBA_PRIV_AUDIT_OPTS
    DBA_REPGROUP_PRIVILEGES
    DBA_ROLE_PRIVS
    DBA_RSRC_CONSUMER_GROUP_PRIVS
    DBA_RSRC_MANAGER_SYSTEM_PRIVS
    DBA_SYS_PRIVS
    DBA_TAB_PRIVS
    DBA_WM_SYS_PRIVS
    DBA_WORKSPACE_PRIVS
    

    Here's something that I have used in the past to list recursively privileges for a user (editing a script of Pete Finnigan).

    /* Setting formatting options */
    SET TERMOUT OFF
    SET SERVEROUTPUT ON
    SET VERIFY OFF;
    SET FEEDBACK OFF;
    WHENEVER SQLERROR EXIT SQL.SQLCODE
    
    /* Define bind variables */
    VAR i_depth NUMBER;
    VAR i_user VARCHAR2(32);
    
    /* Retrieve user input */
    SET TERMOUT ON
    
    ACCEPT USER      PROMPT 'User: '
    ACCEPT DEPTH      DEFAULT 3 PROMPT 'Depth [3]: '
    
    SET TERMOUT OFF
    
    /* Bind input */
    exec :i_depth := &DEPTH;
    exec :i_user := '&USER';
    
    SET TERMOUT ON
    
    COLUMN PRIVS FORMAT A150
    SELECT     (
              CASE WHEN LEVEL > 1
              THEN LPAD(' ', 4*(LEVEL-1)) || CHR(212) || CHR(205) || '> '
              END
         ) || GRANTED_ROLE "PRIVS"
    FROM
    (
         /* THE USERS */
         SELECT     NULL          AS GRANTEE
         ,     USERNAME      AS GRANTED_ROLE
         FROM      DBA_USERS
         WHERE     UPPER(USERNAME) = UPPER(:i_user)
         /* THE ROLES TO ROLES RELATIONS */
         UNION
         SELECT     GRANTEE
         ,     GRANTED_ROLE
         FROM     DBA_ROLE_PRIVS
         /* THE ROLES TO SYS PRIVILEGE RELATIONS */
         UNION
         SELECT     GRANTEE
         ,     PRIVILEGE
         FROM     DBA_SYS_PRIVS
         UNION
         /* THE ROLES TO OBJECT PRIVILEGE RELATIONS */
         SELECT     GRANTEE
         ,     RPAD(DBA_TAB_PRIVS.OWNER || '.' || TABLE_NAME,62,' ') ||  ' (' || DBA_OBJECTS.OBJECT_TYPE || ' -> ' || PRIVILEGE || ')'
         FROM      DBA_TAB_PRIVS
         JOIN     DBA_OBJECTS ON DBA_OBJECTS.OBJECT_NAME = DBA_TAB_PRIVS.TABLE_NAME
         WHERE      OBJECT_TYPE NOT IN ('PACKAGE BODY','SYNONYM')
    )
    START WITH GRANTEE IS NULL
    CONNECT BY GRANTEE = PRIOR GRANTED_ROLE AND LEVEL <= :i_depth;
    

    Pete Finnigan also has a lot of scripts associated with privileges on his site: http://www.petefinnigan.com/tools.htm

Maybe you are looking for

  • Lack of Vista driver Firewire for Satellite Pro P100

    My Satellite Pro P100 (PSPAAE) has a firewire Jack, but I see no sign of a driver on the download page. I missing something or don't have a Toshiba again release a firewire driver?

  • Orange messages in the Junk mailbox

    I should know this, but I confess that I have not. Some messages in the Junk mailbox appear in orange, some in black. I think it has something to do with the messages being reported as spam on the server and the messages being reported as spam in Mai

  • Satellite L750 - battery discharging while the computer turns

    Satellite L750, Win7. 18 month old computer & have noticed that when you turn it on, the battery is 75 - 80% charged only after having been 100% the day before. If I have the computer off for 2 days the costs would be 60-65%. Is the need for battery

  • Concatenate the series of characters

    Hello I need a function to concatenate a set of characters. The function CONCATENATE string does not work because I only have a single entry, as I said it is a series of characters... I want something like!-R-1-0-V-5-0-$-\n to become something like!

  • Extraction of elements of the array

    An array of output of 16 x 1, I want to extract 9 x 1 output array. Someone has any idea how to proceed in labview?