Questions tagged [netmsmqbinding]

This is a WCF specific binding that pushes/pulls .NET data directly into MSMQ.

The NetMsmqBinding allows WCF services to insert or retrieve data directly into/from MSMQ. The configuration available for this binding is suitable for most users needs.

If a custom implementation is required, the developer should interact with the MSMQ directly through the MessageQueue and Message classes.

87 questions
1
vote
1 answer

Can NetMsmqBinding be used with multicast?

I'm trying to put together a multicast MSMQ example. All the examples I find for multicast using PGM have the integration binding. I'd rather not have to modify all my contracts to use MsmqMessage, and I'm concerned I won't be able to attach…
Random
  • 1,896
  • 3
  • 21
  • 33
1
vote
1 answer

Can't get service to pull from (dead letter) queue

I have a queue named log on a remote machine. When I call that queue locally, I specify a custom dead-letter queue by modifying my NetMsmqBinding: _binding.DeadLetterQueue = DeadLetterQueue.Custom; _binding.CustomDeadLetterQueue = new Uri( …
zimdanen
  • 5,508
  • 7
  • 44
  • 89
1
vote
1 answer

Why is an IIS/WAS service not cleaning up lock queues on Win 2k8R2 with MSMQ 4.0

I have an IIS/WAS hosted service running as myself in the development environment. It is activated using net.msmq binding. It is configured to use BufferedReceive (it is a WF service), which involves locking the queue. (Sub queues prefixed lock_ are…
Sentinel
  • 3,582
  • 1
  • 30
  • 44
1
vote
2 answers

design high volume MSMQ

We have many communication servers sending data packets. We would like to store these data packets coming from these server programs in MSMQ until an updater will process them. Data loss has been a concern and we would like to not lose any data…
user180175
  • 23
  • 8
1
vote
2 answers

WCF NetMSMQBinding With non WCF Client

I have a query related to WCF netMsmqBinding. Is it possible to consume a wcf netMsmqBinding by a non .Net Client? say a Java Client.
user1312242
  • 339
  • 1
  • 3
  • 16
0
votes
1 answer

WCF error 0xc00e0069 (MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE)

I have a WPF app that uses WCF (duplex netMsmqBinding) to talk to a self-hosted service app in our domain. I'm now trying to move this WPF app to the big wide world out there, to talk to the WCF service over the internet (well, make them talk to…
SteveCav
  • 6,649
  • 1
  • 50
  • 52
0
votes
1 answer

WCF MsmqBinding WAS : Listener try to match every queue to a service

I'm using a WCF Service with netMsmqBinding and WAS. Everything seems to work well (including remote posting to the queue thanks to stackoverflow community:)). The remaining problem now is that the service processes a few messages then stops with…
VdesmedT
  • 9,037
  • 3
  • 34
  • 50
0
votes
1 answer

why doesn't server.connect() work when server.create() does?

In setting up a simple streaminsight app, I am running into the issue where server.create() works and server.connect() fails. I am not sure what could be a potential cause. EDIT: Source code here: http://pastebin.com/XigdxXLd My setup: private msmq…
brainydexter
  • 19,826
  • 28
  • 77
  • 115
0
votes
0 answers

WCF with MSMQ Testing

I have a [ServiceContract] MyServiceContract with some methods decorated with [OperationContract(IsOneWay = true)]. One of the methods is called LoadFile. I have a ChannelFactory with NetMsmqBinding (ExactlyOnce = true) and…
Kelly Cline
  • 2,206
  • 2
  • 33
  • 57
0
votes
1 answer

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 queue, and a net.tcp endpoint for listeners to…
andrewbadera
  • 1,372
  • 9
  • 19
0
votes
1 answer

WCF Msmq problem reading messages using netMsmqBinding

I have a WCF service using netMsmqBinding that I am using to add messages of Msmq to a queue. The messages are added fine and I can see them in the queue via the computer management console. I have another WCF service that is trying to…
user633609
  • 71
  • 1
  • 5
0
votes
1 answer

How can my WCF service recover from unavailable message queue?

I have a WCF service that receives messages from the Microsoft Message Queue (netMsmqBinding). I want my service to recover if the message queue is unavailable. My code should fail to open the service, but then try again after a delay. I have code…
Andrew Shepherd
  • 44,254
  • 30
  • 139
  • 205
0
votes
1 answer

How to provide my custom certificate when using MSMQ?

Is there any nice step by step tutorial on using external certificates in MSMQ ? Thanks
user1316502
  • 809
  • 2
  • 10
  • 21
0
votes
1 answer

How to resolve a name conversion failure when sending MSMQ messages

I've recently been following this article on how to set up a 3-party queueing system with MSMQ, wherein the publisher, queue server and subscriber are all on separate systems within an Active Directory domain. I've succeeded in completing Part 1 and…
Alex Marshall
  • 10,162
  • 15
  • 72
  • 117
0
votes
1 answer

Where can I find the MSMQ Lookup ID before WCF dispatches a message?

We have a WCF service hosted in IIS which has a netMsmqBinding. Before the message is dispatched to our service, we would like to log the MSMQ Lookup ID. Where I can I find this information? We get it in an IErrorHandler because an…
Stephen Jennings
  • 12,494
  • 5
  • 47
  • 66