Hi ,
I am new to rabbit mq and I am using the below command to publish the payload into rabbit MQ queue. I am using the function publish in rabbitmqadmin.txt file
C:\Python27>python.exe D:\dev\AUTOMATION\SAT\Rabbitmq\rabbitmqadmin.txt -H localhost -u <user> -p <pass> publish exchange=<exchange> routing_key=<queuename> payload="hello, world"
Message published
The message is getting published successfully in my queue configured.
Now i also want to add the header values(properties.header) to the payload. How can i achieve it using the above command. ( i am aware that we can do it from rabbit mq UI but i want to do it from command line ).
Thanks
Swetha