RabbitMQTools icon indicating copy to clipboard operation
RabbitMQTools copied to clipboard

PowerShell module containing cmdlets to manage RabbitMQ.

Results 16 RabbitMQTools issues
Sort by recently updated
recently updated
newest added

Hi I'm getting this error in Get-RabbitMQMessage.ps1 line 131 (the REST call): "You must write ContentLength bytes to the request stream before calling [Begin]GetResponse." The weird thing is that I'm...

Hi, based on issue #45 i added the option "SkipCertificateCheck" to all functions. I hope it's all fine, i am not the god-mode-powersheller. Let me know if something must changed....

Hi, i am having trouble with working with self-signed certificates. I analyzed that and found, that there is no option to ignore invalid certificates. Would it be possible to integrate...

when using something like this $Queue = 'Subscription for 2fc8e48a-0a10-40dd-aeb9-a2f552136243e5#8' Get-RabbitMQMessage -VirtualHost $VirtualHost -Name $Queue -Count 1 -Credential $RMQCRED -BaseUri $RMQURI -Encoding auto -View Default i receive this Invoke-RestMethod :...

Added Remove-RabbitMQExchangeBinding function and listed it in modules function export list. Followed alias naming conventions from Add-RabbitMQExchangeBinding function. Tested against local RabbitMQ instance.

If your queue (or exchange) name contains some space chars, any operations you want to do with it will end up with an error like this: ``` Invoke-RestMethod : {"error":"Object...

I'm looking for some enlightenment here if someone is so inclined to help me. In the proxy for Invoke-Restmethod there is the following code ```powershell #By default the content-length is...

I'm using the Solarized powershell prompt and have installed as per https://github.com/neilpa/cmd-colors-solarized It seems that script (can't call it a module) sets up `$global:options` for it's own purposes and this...

The RabbitMQ 3.7.0 has introduced a breaking change in the parameters to get messages from the queue: https://github.com/rabbitmq/rabbitmq-management/issues/68 https://github.com/rabbitmq/rabbitmq-management/issues/521 https://github.com/rabbitmq/rabbitmq-server/issues/1496 ``` Invoke-RestMethod : {"error":"bad_request","reason":"[{key_missing,ackmode}]"} At C:\Program Files\WindowsPowerShell\Modules\RabbitMQTools\1.2\Public\Get-RabbitMQMessage.ps1:131 char:13 + $result...

A couple of days ago a script using the "Clear-RabbitMQQueue" stopped working because now the function throws an exception. From the verbose output it seems that the default virtual host...