package com.utility; import java.io.ByteArrayInputStream; import java.io.ObjectInputStream; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import com.connection.DataSource; public class DumpOrchEventException { public static void main(String[] args) throws Exception { Connection con = DataSource.getConnection(); long orchEventKey = 1; Statement stmt = con.createStatement(); String query = "select id, name, status, result from orchevents where id=" + orchEventKey; ResultSet rs = stmt.executeQuery(query); while (rs.next()) { System.out.println("id = " + rs.getString("id")); System.out.println("name = " + rs.getString("name")); System.out.println("status = " + rs.getString("status")); ByteArrayInputStream bais = new ByteArrayInputStream(rs .getBytes("result")); ObjectInputStream oip = new ObjectInputStream(bais); Object o = oip.readObject(); Exception ex = (Exception)o; ex.printStackTrace(); System.out.println(ex.getMessage()); } stmt.close(); rs.close(); con.close(); System.exit(0); } }
Oracle Identity Manager (OIM R2PS2/PS3/12C) is a highly flexible and scalable enterprise identity administration system that provides operational and business efficiency by providing centralized administration & complete automation of identity and user provisioning events across enterprise as well as extranet applications.
OIM API To De-Serialize Orchestration Events Exception
Subscribe to:
Posts (Atom)
About OIM
Oracle Identity Management enables organizations to effectively manage the end - to - end life - cycle of user ide...
Popular Posts
-
OIM API's Sample Code : Videos: Massive Gaze Videos Connection Related API's : OIM DB Connection/ Data Source connection ...
-
Videos: Massive Gaze Videos 1. Basic OIM Information 2. MDS Export/Import 3. Steps For R2PS2 / R2PS3 Custom Pre-processor Ev...
-
Videos: Massive Gaze Videos 1. Query to get OIM Provsioned/provisioning Account details 2. Query to get usr keys For Rejected / ...
No comments:
Post a Comment