Microsoft Message Queuing (MSMQ) is a message queuing implementation developed by Microsoft and deployed as part of its Windows platform since 1996. MSMQ is included on most versions of Windows but it's not installed by default.

learn more… | top users | synonyms

0
votes
0answers
14 views

C# Calling WCF behind DMZ

I need to call a WCF service that is behind a DMZ: WEBDMZ .. LANDMZ ------------- ------------ ClientServer => WCF service As there is a firewall between the two ...
0
votes
1answer
27 views

How to throw the error to window service to restart

I am having MSMQ on windows 2008. Messages are available in private queue. I have one WCF subscriber (written in C#) which is installed as windows service. Now problem is that sometimes the WCF ...
0
votes
0answers
15 views

There was an error generating the XML document- Working Class

I have the following C# code of a class which I create an object of that I am trying to send in a MessageQueue that keeps giving me the InvalidOperationException "There was an error generating the XML ...
0
votes
0answers
10 views

IServiceBus.Reply() doesn't work in prod environment

We have a web-application in DMZ sending messages to our backend using Bus.Send(). The application subscribes to several messages from the backend using Bus.Notify(). The above two scenarios works, ...
0
votes
1answer
18 views

getting Contract requires TwoWay (either request-reply or duplex) error

I am having WCF subscriber for MSMQ which is installed as windows service.I have attached a IErrorhandler as well.So i needed to make it OneWay= false in service contract.Now when I am starting the ...
0
votes
0answers
8 views

Can't place message in MSMQ on server in DMZ using HTTP

I can't place a message in a non-transactional MSMQ on a server in our DMZ using HTTP. In the IIS logs I'm getting: 2013-05-15 20:29:54 W3SVC1 192.168.32.XXX POST /msmq/private$/newprivate - 80 - ...
2
votes
0answers
34 views

WCF subscriber stops polling message from queue randomly

I am using wondows 2008 standard OS.we have private queue ,in that message is published by another application.And we have WCF subscriber to poll the message from private queue and deliver to another ...
1
vote
2answers
27 views

NServiceBus - access queue on different machine

I have no experience in working with NServiceBus, and I'd like to make sure if my scenario can be achieved. I have two machines: A and B. On machine A there was deployed a component that send messages ...
0
votes
1answer
25 views

Large data to cloud service

I need to send about 50 mb of data containing images to a service on Windows Azure. Should I send it to a WCF service using a binding with MSMQ transpotation, or would it be better to write a worker ...
0
votes
1answer
18 views

MSMQ as a job queue

I am trying to implement job queue with MSMQ to save up some time on me implementing it in SQL. After reading around I realized MSMQ might not offer what I am after. Could you please advice me if my ...
1
vote
1answer
21 views

Is MsmqMessage required with MsmqIntegrationBinding

I would like to use the MsmqIntegrationBinding to integrate with existing MSMQ system. The serialization it provides works well but wrapping data contracts with MsmqMessage seems redundant. Do I ...
1
vote
1answer
20 views

Does MsmqIntegrationBinding support multiple service operations

I'm learning about MsmqIntegrationBinding. All the samples and guidelines I've seen so far were covering scenario where, there is just one operation with one data contract. I tried to add another ...
1
vote
0answers
33 views

Passing an unmanaged pointer between two AppDomains (By indirect call)

.NET 4.5, 64bit Win8 I have two MSMQ running under WCF and hosted under Windows Activation Service. Execute MSMQ: Responsible for calling an unmanaged function and obtaining a pointer IntPtr to 4GB ...
0
votes
1answer
21 views

WCF Activation for MSMQ where the service (.svc) is on the root

VS 2012/.NET4.5, Windows 8/IIS8 and 64 bit Using WCF Service application, all the documentation that I've seen so far in naming my MSMQ queue to match the service name assume the fact that I am using ...
0
votes
1answer
35 views

Get XML Element by name

I have what seems to be a complicated xml file generated by eConnect's outgoing service, then saved in MSMQ. The objective is to get a few specified fields/elements within this XML. For example, i've ...
0
votes
3answers
31 views

Get list of line items from XML

I have an eConnect outgoing document pulled from MSMQ, i need to loop through the line items. I've tried: XmlNodeList nodes = ...
2
votes
0answers
30 views

MSMQ, Asynchronous Reading and Acknowledgement

I need to develop an application which will read messages from MSMQ asynchronously. I found good examples of this the official one being ...
0
votes
2answers
59 views

Multithreaded MSMQ reading

I have made a Windows Service that reads messages from the MSMQueue and I need to do that in parallel (two threads should read messages simultaneously). How can I do that? Here is my code (pretty much ...
1
vote
0answers
59 views

NServiceBus - Distributor Control Message Errors

We have bought a lot of licenses, done a lot of testing with a lot of promissing results and are on the brink of our first release :). But now we have hit a big bump on the road, meaning we might ...
1
vote
2answers
65 views

Architecture of .NET MSMQ-based synchronization system

I have a straightforward, existing ASP.NET MVC web solution. The server-based stuff writes information to a database. I am now going to integrate/synchronize this system with a number of other ...
0
votes
2answers
66 views

MSMQ access from mainframe? REST API maybe?

I need to put and get messages to/from our remote MSMQ, but because we will do the put s from our mainframe, we need a way that can be implemented in COBOL(or PL/1 maybe). My questions are; 1) Is it ...
0
votes
0answers
53 views

MSMQ messages are not getting processed by the WCF service

I have a WCF service which will fetch messages from MSMQ and inserts data from that message to a database, it was working well until i received a message of size 9 KB and more. I have debugged and ...
0
votes
1answer
28 views

Can we change the LogMgrFlushInterval value for MSMQ?

Microsoft cautions against changing this value in their documentation, but the documentation itself appears to be incorrect -- it states that the default value is 50ms, while our testing shows it is ...
2
votes
0answers
23 views

How to detect the messaeg arrival time for WCF MSMQ binding

I have a service using WCF MSMQ binding. On the server, it is needed to introduce some latency, for example 5 seconds. To do that, the service wants to detect the time when the message arrives. I ...
0
votes
0answers
11 views

MSMQ:Is there a way to know the queue is deleted and created again when the other process is updating messages?

I have the a process to write message to a queue and the other program reads message and process them. While the user manually deletes the queue and then recreate it again while the writing process is ...
0
votes
2answers
30 views

Prevent application start fail if MSMQ not installed

I'm using MSMQ in my .NET application. If MSMQ installed but not running - it can be handled. But how to prevent crash on start up if MSMQ feature not installed on local machine ?
4
votes
0answers
148 views

Correlate MSMQ End-to-End trace with WCF Trace and application level logging

Background: I'm troubleshooting a problem where messages sent by WCF over transactional MSMQ (with netMsmqBinding) seem to disappear. The code that uses WCF is in a third-party assembly which I ...
1
vote
1answer
71 views

MassTransit Subscriptions and Receiving Own Messages

I am trying to implement a proof of concept service bus using MassTransit. I have three applications which need to communicate changes of a common entity type between each other. So when the user ...
0
votes
0answers
58 views

MessageQueue.GetAllMessages throws MessageQueueException for remote queue

I am trying to retrieve messages from a remote private queue, but I get a MessageQueueException with the "Invalid queue path name." message. Both the client and the host computers are running Windows ...
0
votes
1answer
35 views

MSMQ, Windows Service and Server Restarts

I am working with a legacy Windows Service that reads messages from a private MSMQ queue processes them (does some database work, sends some emails) and then waits for the next message (PeekCompleted) ...
0
votes
0answers
47 views

MSMQ Receive Timeout Even With Items in Queue

I am having ongoing problems trying to implement a very simple MSMQ solution: 2 PCs (not servers) running Win7 and Win8 respectively. Each one monitors data from a hardware system, and periodically ...
0
votes
0answers
107 views

C# Msmq error: (0x80004005): An invalid handle was passed to the function

I receive some errors regarding MSMQ, and can't find anything online to help me out. Here is the stacktrace: System.Messaging.MessageQueueException (0x80004005): An invalid handle was passed to the ...
0
votes
1answer
129 views

Poor performance of NServiceBus over MSMQ

We are trying to integrate NServiceBus/MSMQ in our current web application (REST). Running the profiler, it seems that a lot of time is spent sending the message to the queue (see the profiler ...
2
votes
2answers
58 views

Set Queue Path in Web.config

I am using MSMQ in C#, how can i set queuepath in web.config? Any suggestions? Thanks
0
votes
0answers
29 views

WCF 4 MSMQ Exception

Recently upgraded our SOA system from NHibernate 1.2 and .NET 3.5 to NHibernate 3.3 and .NET 4. In all our testing, we did not see any issues, however, when moving to production, we have found that ...
0
votes
0answers
22 views

Set MSMQ Watcher

I want to set watcher in MSMQ like as FileWatcher, It will check in the queue if message is in queue then it will deliver, i do not want to use Timer, Thread. Is there anyother way to process this? ...
0
votes
0answers
28 views

c++ MSMQ “mq.h” header

I have a weird problem. I have an Wind32 console app using MSMQ. Everything is working fine. I want to use the same code for a DLL php module. When I am including "mq.h" I have a lot of syntax errors. ...
2
votes
2answers
122 views

Sending message directly to BizTalk or via MSMQ?

This is the first time I'm using BizTalk for cross-machine, asynchronous, reliable communication. I would like to know is there a way to directly send messages from one machine to BizTalk queue or I ...
0
votes
2answers
51 views

Program Design Questions

Good Day everyone, I have a program design question (or questions) that I would love to get some feedback on. Here is my situation: I have Computer A running software A Software A has different ...
0
votes
1answer
46 views

Call Windows Service from Controller

I have a windows service created and installed. I want to call it from my MVC controller, as I am implementing MSMQ messaging service, so need to call Windows service.
1
vote
0answers
18 views

Why does restarting MSMQ service cause queue journal messages to replay?

Win2k8 R2 sp1 - I have a WF service using AllowBufferedReceive over NetMsmqBinding. The messages are journaled on the server at the WF service queue. If I restart the Message Queueing service, all ...
0
votes
1answer
38 views

does MSMQ have “lock until expire” functionality similar to Amazon SQS?

I've been using AWS SQS, which has a nice feature that when a message is claimed from the queue it locks for a period of time. During this lock if it is processed successfully the message is marked as ...
4
votes
3answers
148 views

MSMQ causes Windows 8 to crash with a BSOD

I use Windows 8 Pro, C# and .NET 4.5 I use MSMQ to read or peek or send message on a REMOTE machine but it causes the operating system a BSOD... Locally there is no problem but only when i try to ...
1
vote
3answers
34 views

App Fabric Cache as a Queue

I have an .net WCF service (hosted on IIS 7.5) that makes a high volume of calls to a SQL Server 2008 r2 stored procedure which inserts into several tables. The clients of this WCF service are used ...
2
votes
1answer
83 views

MSMQ doesn't work cross-server with .net framework 4.5

After installing VS2012, and attempting to use an ancient app that hasn't been modified meaningfully in years, MSMQ messages were being lost. Research proved that they were being processed on the ...
0
votes
0answers
23 views

ClientCertificate validation in WCF/MSMQ

I'm creating a WCF/MSMQ service with NetMsmqBinding. I want to sign it with a certificate from the client and secure the transport using a certificate issued by the service. I want to do this all in ...
0
votes
0answers
86 views

Sending response back to Http Request using WCF & MSMQ

For over a week, i'm searching some information regarding the aforesaid title but didn't help. I'm totally new in WCF, worked my way up understanding the ABC's of it. Got some programs developed. My ...
1
vote
1answer
208 views

How to configure NServiceBus to work with remote MSMQ queues?

I have tried to use NServiceBus version 3 to receive messages sent to a MSMQ queue from a remote client machine. The client resides in the same domain as the machine on which the destination queue ...
0
votes
1answer
132 views

MSMQ using questions

Can you explain, how much RAM memory will be used when using recoverable messages? I know, that one message consumes approximately 70–80 bytes and this is ok and i know that message body will save to ...
0
votes
1answer
52 views

How can a verify my WCF message is signed and encrypted?

How can I verify that my WCF message has been signed? I've got my setup running and working just fine, but need to be able to inspect the signature on the server side. How is this done? I'm using ...

1 2 3 4 5 24