Thursday, May 28, 2020

Create and Modify EMS Destination Properties


   We can use below Administration Tool commands to create destinations, and to add, change, override and remove properties of the destination.


-->To Create Queue:

create queue TestQueue

-->To Create Topic:

create topic TestTopic

-->To add properties to a destination:

addprop queue TestQueue maxmsgs=1000,overflowPolicy=discardOld

-->To change properties to a destination:

addprop queue TestQueue overflowPolicy=rejectIncoming

-->To Override properties:

setprop queue TestQueue maxmsgs=500

Note : Above command changed maxmsgs to 500 and removed overflowPolicy

-->To remove the specific properties:

removeprop queue TestQueue maxmsgs=500





No comments:

Post a Comment

back to top