Hi
Does anyone knows what this error means?
Error -: AIP-13122: Error while retrieving connection information from IAS repository: {0}: java.lang.SecurityException: access denied (oracle.ias.repository.schemaimpl.CheckRepositoryPermission getSchema)
I got this trying to run the below code:
public static void main(String[] args) throws Exception {
try{
InstanceMessageUtil util = new InstanceMessageUtil();
InstanceMessage[] messages =
util.getInstanceMessages("10/10/2005", "10/28/2006", "MMM");
System.out.println("Number of messages: " + messages.length);
}catch(Exception e){
System.out.println("err:"+e);
}
}