IBM BPM, V8.0.1, All platforms > Authoring services in Integration Designer > Services and service-related functions > Access external services with adapters > Configure and using adapters > IBM WebSphere Adapters > Adapter Toolkit > Implementing code from the IBM WebSphere Adapter Toolkit > Problem determination

Changing the Java logging API settings

To change the Java™ logging API settings, you modify a permission in the adapter deployment descriptor.

The following permission must be added to the adapter deployment descriptor, represented as the file ra.xml in the RAR package:

permission java.util.logging.LoggingPermission "control";

In the ra.xml file, this permission is as follows:

<security-permission>
  <security-permission-spec>
    grant {
	 permission java.util.logging.LoggingPermission "control";
	    };
  <security-permission-spec>
<security-permission>

Problem determination