[jboss-dev-forums] [JBoss AS 7 Development] - Re: @javax.annotation.security.RolesAllowed on EJBs does not work
Stuart Douglas
do-not-reply at jboss.com
Tue Jan 24 00:09:08 EST 2012
Stuart Douglas [https://community.jboss.org/people/swd847] created the discussion
"Re: @javax.annotation.security.RolesAllowed on EJBs does not work"
To view the discussion, visit: https://community.jboss.org/message/648314#648314
--------------------------------------------------------------
Security is not being used as your ejb's are not associated with a security domain.
You need something like this in jboss-ejb3.xml:
<?xml version="1.0"?>
<jboss:ejb-jar xmlns:jboss="http://www.jboss.com/xml/ns/javaee"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:s="urn:security"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee http://www.jboss.org/j2ee/schema/jboss-ejb3-2_0.xsd
http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd"
version="3.1"
impl-version="2.0">
<assembly-descriptor>
<s:security>
<ejb-name>*</ejb-name>
<s:security-domain>other</s:security-domain>
</s:security>
</assembly-descriptor>
</jboss:ejb-jar>
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/648314#648314]
Start a new discussion in JBoss AS 7 Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2225]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-dev-forums/attachments/20120124/daa9aafb/attachment.html
More information about the jboss-dev-forums
mailing list