Last active
August 29, 2015 14:10
-
-
Save constructor-igor/6991a08566994e859d38 to your computer and use it in GitHub Desktop.
create-msqueue-send-message-and-receive-message (powershell)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# | |
# References: | |
# http://ardalis.com/How-Can-I-View-MSMQ-Messages-and-Queues | |
# to see queue, search via "Computer Mamagment" | |
# | |
# simular sample: http://blogs.msdn.com/b/sajay/archive/2010/03/18/powershell-script-to-create-an-msmq.aspx | |
# | |
[Reflection.Assembly]::LoadWithPartialName("System.Messaging") | |
$path = ".\Private$\test" | |
$queue = $null | |
$exists = [System.Messaging.MessageQueue]::Exists($path) | |
if($exists -eq $false) | |
{ | |
$queue = [System.Messaging.MessageQueue]::Create($path) | |
} else | |
{ | |
$queue = New-Object System.Messaging.MessageQueue -ArgumentList $path | |
} | |
[console]::WriteLine("queue {0} exists (or created)", $path) | |
# | |
# Send message | |
# | |
$msg = New-Object System.Messaging.Message | |
$msg.Priority = [System.Messaging.MessagePriority]::Normal | |
$msg.Label = "Test Message (powershell)" | |
$msg.Body = "Test Body (powershell)" | |
$queue.Send($msg) | |
[console]::WriteLine("sent '{0}' message with body '{1}'", $msg.Label, $msg.Body) | |
# | |
# Receive message | |
# | |
$timeSpan = New-Object System.TimeSpan(0, 0, 3) | |
$msg = $queue.Receive($timeSpan) | |
$msg.Formatter = New-Object System.Messaging.XmlMessageFormatter -ArgumentList "System.String,mscorlib" | |
[console]::WriteLine("received '{0}' message with body '{1}'", $msg.Label, $msg.Body) | |
$queue.Dispose() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment