Is it possible to use wildcards for queue permissions in WebSphere Liberty?
NickName:danishrulez Ask DateTime:2018-09-14T17:41:55

Is it possible to use wildcards for queue permissions in WebSphere Liberty?

The embedded messaging server in WebSphere Liberty supports access control on queues. In the server.xml, the following structure can be added under the messagingEngine section:

<messagingSecurity>
       <role name="queueAccess">
          <group name="admin"></group>
          <queuePermission queueRef="myQueues.queue_1">
             <action>ALL</action>
          </queuePermission>
       </role>
</messagingSecurity>

This would grant the admin user access to the queue myQueues.queue_1 but, if I want to grant access to multiple queues myQueues.queue_1 to myQueues.queue_n, it seems I have to create a section per queue.

I have tried several wildcards, such as myQueues* or like a regexp myQueues.* - but no luck. I have been unable to find any documentation on the use of wildcards, so can someone confirm or deny whether wildcards are possible in this scenario?

Copyright Notice:Content Author:「danishrulez」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/52329231/is-it-possible-to-use-wildcards-for-queue-permissions-in-websphere-liberty

More about “Is it possible to use wildcards for queue permissions in WebSphere Liberty?” related questions

Is it possible to use wildcards for queue permissions in WebSphere Liberty?

The embedded messaging server in WebSphere Liberty supports access control on queues. In the server.xml, the following structure can be added under the messagingEngine section: &lt;messagingSecuri...

Show Detail

What cross-language messaging protocols are included in WebSphere Liberty?

This article talks about IBM WebSphere Liberty WebRTC support via MQTT over the rtcomm library. I am interested in exchanging messages between Java EE JMS (queue / topic) destinations on WebSphere

Show Detail

Disable batch security in WebSphere Liberty

We use a WebSphere Liberty server behind a reverse proxy. We enabled the appSecurity-2.0 feature to add a custom TAI which validates HTTP request between the proxy and Liberty. To use the batch fra...

Show Detail

Is there a pass by reference setting in WebSphere Liberty?

Is there a way to configure WebSphere Liberty to use call-by-reference for calls to remote EJBs inside the same JVM? In WebSphere traditional this is possible by choosing "Pass by reference" under ...

Show Detail

Websphere liberty: Timer Manager

I am migrating application from WebSphere to liberty. It uses WebSphere timer managers. What is the use of timer manager? Is this supported in liberty. Is it the same as timer service in liberty?

Show Detail

Using multiple websphere liberty profile servers instead of a single websphere 8?

In following my previous question Bluemix, push application with server.xml vs whole Liberty Server, is there performance difference? I'd thought is it possible to replace single Websphere Applicat...

Show Detail

What are the differences in features between Websphere Liberty Core, Websphere Liberty Base and Open Liberty versions?

What are the differences in features between Websphere Liberty Core, Websphere Liberty Base and Open Liberty versions? Apart from the Websphere Liberty ones requiring a license, of course and Open

Show Detail

Is it possible to use IBM Websphere traditional thinclient SOAP code with Websphere liberty?

We have code that was based with IBM Websphere traditional, we are trying to use Websphere Liberty. In trying to use this code below, we are getting class not found errors. We originally used the

Show Detail

How to use Websphere liberty in spring boot application

I want to use Websphere liberty in spring boot application instead of tomcat server. If I am correct it is not supported out of the box. How can I configure spring boot/websphere liberty to achieve...

Show Detail

Websphere Liberty Support for Work Manager

I am migrating application from WebSphere to liberty. It uses WebSphere work managers. What is the use of work manager? Is this supported in liberty. What is the alternative in liberty

Show Detail