SecurityConf attribute
This xml attribute defines which roles are allowed to perform which operations.
Example config
<attribute name="SecurityConf"> <security> <role name="guest" read="true" write="true"></role> <role name="publisher" read="true" write="true" create="false"></role> <role name="durpublisher" read="true" write="true" create="true"></role> </security> </attribute>
Attributes
name - the role name
read - whether the role is allowed to receive messages
write - whether the role is allowed to send messages
create - whether the role is allowed to create DurableSubscriptions dynamically using the jms api createDurableSubscription(...)
Comments