ibm-messaging / mq-container

Container images for IBM® MQ
Apache License 2.0
247 stars 186 forks source link

Add default permission to create temporary response queues to principal 'app' #547

Open danielfedeai opened 10 months ago

danielfedeai commented 10 months ago

The default developer setup works fine to do simple queue publishing and subscribing samples. If I want to do a simple request response example with publishing to queue DEV.QUEUE.1 and create a temp queue for response, this does not work due to missing permission of principal 'app' on channel DEV.APP.SVRCONN.

I needed to run: SET AUTHREC PRINCIPAL('app') OBJTYPE(QUEUE) PROFILE(SYSTEM.DEFAULT.MODEL.QUEUE) AUTHADD(GET,PUT,DSP) to make this work.

Would love to see this permission as part of the default developer configuration.