Auditing Provider Infinite Recursion with DMS Sensors Enabled in the ojdbc JAR file
Hello,
I have a WebLogic 10.3.5 server on Windows. I am trying to write an Audit Provider that will take all audit logs and write them to a database. I have created an Audit Provider using the WebLogic MBean Maker and an MDF file.
However, when I am handling an AuditAtzEventV2 object, I want to write it to the database. I am using JDBC, with some help from the Spring Framework 3.0. However, the audit authorization event in my code tries to write the record to the database. The JDBC driver tries to create a JNDI Initial Context, which happens to be an Initial Context back to WebLogic Server. There, this triggers a check to the WebLogic Security Framework, which then calls my code to audit another authorization event. This event then wants to be inserted into the database.
I have a WebLogic 10.3.5 server on Windows. I am trying to write an Audit Provider that will take all audit logs and write them to a database. I have created an Audit Provider using the WebLogic MBean Maker and an MDF file.
However, when I am handling an AuditAtzEventV2 object, I want to write it to the database. I am using JDBC, with some help from the Spring Framework 3.0. However, the audit authorization event in my code tries to write the record to the database. The JDBC driver tries to create a JNDI Initial Context, which happens to be an Initial Context back to WebLogic Server. There, this triggers a check to the WebLogic Security Framework, which then calls my code to audit another authorization event. This event then wants to be inserted into the database.
0