msmq

Why won't MSMQ send a space character?

I'm exploring MSMQ services, and I wrote a simple console client-server application that sends each of the client's keystrokes to the server. Whenever hit a control character (DEL, ESC, INS, etc) the server understandably throws an error. However, whenever I type a space character, the server receives the packet but doesn't throw an erro...

How can I connect to MSMQ over a workgroup?

I'm writing a simple console client-server app using MSMQ. I'm attempting to run it over the workgroup we have set up. They run just fine when run on the same computer, but I can't get them to connect over the network. I've tried adding Direct=, OS:, and a bunch of combinations of other prefaces, but I'm running out of ideas, and obvious...

MSMQ wcf activation issue with .net 4.0 and server 2008

I have .net 4.0 application ported from net 3.5 that uses net.msmq running on server 2008 x64 Setup net.msmq Service with address "net.msmq://localhost/private/msmqdataservice.svc" net.msmq endpoing with address "net.msmq://localhost/private/msmqdataservice.svc" queue in MSMQ -> name = "$private\msmqdataservice.svc" everything is wo...

How to read msmq messages (me, not the pc)

I want to look inside my queues, the msm console snapin has this property dialog, but it is very difficult to read and the messages which are important to me are encoded and look like this: 3C 3F 78 6D 6C 20 76 65 <?xml ve 72 73 69 6F 6E 3D 22 31 rsion="1 2E 30 22 20 65 6E 63 6F .0" enco 64 69 6E 67 3D 22 75 74 ding="ut 66 2D 38 22 3F 3...

MSMQ.MSMQQueueInfo PathName Not Accepted

I am using MSMQ.MSMQQueueInfo with jscript on Windows 7 (the latest MSMQ version). This is being run on a domain joined computer. For some reason unknown to me, it just will not accept the PathName I give it (which is in an acceptable format). Here is the code: var qi = new ActiveXObject ("MSMQ.MSMQQueueInfo"); qi.PathName = "FormatNa...

"Circuit breaker" for net.msmq?

Hi, The Circuit Breaker pattern, from the book Release It!, protects a service from requests while it is failing (or recovering). The net.msmq binding used with transactions give us nice retry and poison message capabilities. But I am missing the implementation of such a "Circuit breaker" pattern. A service is put under even heavier loa...

What is the maximum number of queues that can be supported by MSMQ?

What is the maximum number of queues that can be supported by MSMQ? Does the maximum vary by operating system? Does the maximum vary if the queues are public or private? ...

Microsoft Message Queueing on Microsoft Windows Mobile 6

Hello people, i installed msmq on a windows mobile 6 device using the msmq cab from wm 5 server tools which provides the visadm utility and the required dlls for msmq. The msmq installed without any issues (installed -> registered -> soft reset -> enable binary -> enable srmp) The thing is when i run the app i developed (Vb .net , compa...

How to do a transactional get from Websphere MQ in dotnet?

I’m writing a client that receives messages from an external Websphere MQ Queue and puts them on an internal MSMQ Queue. The client will use MQ Client or, preferably, be purely managed (MQC.TRANSPORT_MQSERIES_MANAGED). Based on an example from IBM, I have a version up and running that can do a simple IBM.WMQ.MQQueue.Get(…). How can this...

Is there a tool that allows easy exporting and importing of messages from a message queue (MSMQ)?

Is there a tool that allows easy exporting and importing of messages from a message queue (MSMQ)? Something like IBM WebSphere's rfhutil utility. Hopefully it's free or made by Microsoft. ...

MSMQ BeginPeek/PeekCompleted memory leak

Using Microsoft MessageQueue there seem to be a memory leak related to the PeekCompleted event. I found a related question on experts exchange from 2005, but with no proper answer/solution: http://www.experts-exchange.com/Programming/Misc/Q_21387840.html Using ANTS Memory Profiler I can see that I get additional pinned instances of Byte...

how to purge journal queue in c#?

i am getting the purge to work on a queue but not on its journal any idea why? MessageQueue oque1 = new MessageQueue(Qname); oque1.UseJournalQueue = true; oque1.Purge(); ...

MSMQ/.EXE vs. Web Service.... MEF IoC?

We are debating to correct way to setup a notification service. This serivce will be called by various apps and the service will need to return relevant data back. My feeling is you just create a Web service that the intranet portal (or anything) could access by sending the user ID and in return getting any information (User 425 report ...

Is this a good architecture / design concept for handling/manipulating file uploads?

Hi folks, I'm looking at adding multi-file uploading to our ASP.NET MVC web application. I am going to use the 3rd Party Multi-File uploader Aurigma to handle the actual uploading. Once each file is 100% received by the web server, it needs to be checked for the following is it an image or video. if it's an image, does it need to be...

MSMQ AD permissions

Hi, We have a system using two machines to do some processing. Let's call the machine that does the processing PROCESSOR, and the machine giving it items to process SERVER. Both are running Windows Server 2008. We have one Windows Service running on SERVER which needs to use MSMQ to send messages to a public queue PROCESSOR. On PROCESS...

Heavy Asynchronous Processing

I have an application, in it's simplest form, it reads a large number of phone numbers from a database (about 15 million) and sends each number off one line at a time to a url for processing. I designed the application like this: bulk export the phone numbers from sql to a text file using SSIS. This is very quick and a matter of 1 or 2...

Diagnosing MSMQ Access Errors with NServiceBus

Does anyone know of a decent way of diagnosing MSMQ access errors. I'm using NServiceBus in a web application. There is a service running that actually creates the private queues, and the web application sends messages to that queue. The web site uses anonymous access, and the application pool runs using the Network Service account. ...

NServiceBus, why can I Bus.Send, but not Bus.Publish? Need help debugging

Ok, Quick background We're using NServiceBus 2.0 with pretty much the standard config, nothing "crazy" going on. App is .NET 3.5 Dev environment is Publisher and Subscriber are on the same box, Windows 7. Staging environment is Publisher and Subscriber are on different boxes, one Windows 7, the other Windows Server 2008. Behaviour ...

MSMQ Workgroup - Queues contain messages, but I can't see any

I've been using MSMQ for some time but found this issue to be really weird. We have a GPS tracker which sends messages to MSMQ. I made sure the queues I'm using are not empty, programatically, but when I check the queues manually via Services & Applications > MSMQ, none of the queues show any message. First I thought this could be relat...

How to add WCF Service Reference when using net.msmq

How do you start a WCF client when using the service is only available on net.msmq - when you use the "Add Service Reference", you get an error ... The MetadataExchangeClient instance could not be initialized because no Binding is available for scheme 'net.msmq'. You can supply a Binding in the constructor, or specify a configurationN...