• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

AQ Error AIP-13122

 
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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);
}
}
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic