Hello,
version: WebLogic 9.1
We have a .rar file that has the following structure:
.rar
->Meta-Inf
--->Manifest.mf
--->ra.xml
--->weblogic-ra.xml
->Jar1
->Jar2
The ra.xml has a <security-permission-spec> clause similar to:
<security-permission>
<security-permission-spec>
grant
{
permission java.util.logging.LoggingPermission "control","";
:
...several more permissions...
:
permission
com.abc.services.user.CredentialPermission "readCredential","ReadCrede
ntial";
permission com.abc.services.user.UserContextPermission "*","read";
};
</security-permission-spec>
</security-permission>
Upon deployment we get the following exception:
weblogic.application.ModuleException:
weblogic.security.service.InvalidParameterException:
weblogic.security.service.SecurityServiceException: [Security:090197]
Can't find permission com.abc.services.user.CredentialPermission
Apparently weblogic can't see the last 2 classes that are actually
contained within JAR1 within the .rar.
Does anyone have a suggestion on how to make this work?
Thanks very much,
DLutz