Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Even if I am not completely sure about it, especially why I did not experienced it in the past, the current virtuoso adapter throws java.security.AccessControlException of trying to connect to the backend database.
The known method to overcome this is to wrap the relevant code into:
... = AccessController.doPrivileged(
new PrivilegedAction<String>() {
public String run()
}
);