Tagged Questions
The msmq-wcf tag has no wiki summary.
5
votes
2answers
111 views
How to implement Message Queuing Solution
I have a scenario where about 10 different messages will need to be enqueued and then dequeued / processed. One subscriber will need all 10 messages, but another will only need 8 of the 10 messages. ...
5
votes
5answers
509 views
Why are my queued WCF messages silently disappearing?
I have a transactional MSMQ queue setup on server THOR. I am able to post messages to that queue from a workstation with the following code:
var queue = new ...
3
votes
1answer
260 views
Log Buffering Through MSMQ to WCF Web Service
I have an interesting situation on my hands. For a few years now we've had a WCF service that runs on an IIS box on our network that we use for logging. Applications use basicHttpBinding to send log ...
2
votes
1answer
81 views
WF4 calling WCF Service
I'm having a problem trying to get a workflow (WF4) to call a long running WCF service and then resume processing when the WCF service completes. The diagram below gives a rough outline of what I'm ...
2
votes
2answers
60 views
How to increase number of messages that can be stored in MSMQ
We have a number of MSMQ queues throughout our system, both private and public queues. Sometimes a windows service that reads from a queue will crash, and so messages will build up in that queue. Once ...
2
votes
3answers
1k views
WCF MSMQ binding with an IIS service - how to instantiate the service?
I have a WCF service with netMsmqBinding. My client can send messages to my queue, and when the service is running it retrieves messages from the queue as expected. If the service is not running, ...
1
vote
1answer
37 views
About LAB EntLib, MSMQ and WCF
I am not really confortable with this subject since I always wrote my own logger until now.
I have a WCF REST web service.
This service needs to log information from errors to who uses it and when.
...
1
vote
2answers
275 views
MSMQ between WCF services in a load balanced enviroment
I'm thinking of adding a queue function in a product based on a bunch of WCF services. I've read some about MSMQ, first I thought that was what I needed but I'm not sure and are considering to just ...
0
votes
2answers
26 views
WCF + MSMQ 4 : Who moves a message from retry queue back to the application queue?
This is a simple question, but I was not able to find an answer.
Suppose my message is placed to the retry queue (who creates the retry queue? Is it a WCF or a MSMQ service?)
After 5 minutes (that's ...
0
votes
0answers
57 views
WCF MSMQ over HTTP Endpoint Works Intermittently
I've got an interesting problem with a WCF MSMQ endpoint. Everything works consistently and as advertised using a Native endpoint. However, I have some clients that cannot get through the firewall ...
0
votes
1answer
28 views
MSMQ Implementation with WCF and desktop application
I need to develop a flow where one WCF service and one desktop application involved. I want that WCF service will push the messages to desktop application and the application will receive that ...
0
votes
2answers
180 views
Given net.msmq Address, How Do I Check if this Queue Exists?
I have a service, which inserts stuff into MSMQ via WCF. However, it can be a long time before any messages are inserted into the queue, which is when the error for a non-existing queue would occur.
...
0
votes
1answer
125 views
MSMQ - how to Communicate between two application
I started looking into MSMQ very recently so i have basic doubts . If two application needs to communicate lets say server and client I think both will share the same MQ address and when the client ...
0
votes
1answer
80 views
MSMQ requires AD certificate, but we are using a service account
Issue:
How do you create the AD certificates MSMQ requires of an AD account, which are auto-created per computer in AD upon first login, without actually logging on as said account?
Background:
We ...
0
votes
1answer
238 views
Can a WCF service object implementing a contract for a net.msmq endpoint also implement a callback contract for a net.tcp endpoint?
Trying to implement a MSMQ-backed WCF PubSub. I understand that net.msmq is one-way; however when I use a single service object to implement the net.msmq endpoint for reading from the underlying ...
0
votes
1answer
74 views
How to create a WCF dead-letter service for MSMQ3.0
I'm trying to create a service reading the dead-letter from the transactional system dead letter queue.
The service configuration looks like this:
<service ...