Questions tagged [msmqintegrationbinding]

26 questions
9
votes
1 answer

How can I explicitly mark messages as poisoned in a transactional MSMQ with WCF

I'm using MSMQ version 4 and have a transactional queue. I'm using WCF to listen to the queue for incoming messages. While processing there is a dependency on third party components that might fail or be unavailable for a longer period of time. To…
Leo
  • 331
  • 2
  • 8
4
votes
1 answer

Sending message to private MSMQ queue with Authenticate checkbox checked?

Before posting this question, I searched through all forum threads. I found that my issue is similar to the Sending to authenticated queue However that thread doesn't really answered my question. I have following setup (using .NET applications and…
3
votes
1 answer

Handle NormalizePoisonException in MSMQ Integration Binding

Good evening, I have an MSMQ queue that is pushing messages to a WCF service using msmqIntegrationBinding. The receiveErrorHandling property is set to the default of "Fault". Occasionally, MSMQ has a hissy fit trying to deserialise a…
2
votes
1 answer

Change the message encoding of MsmqIntegrationBinding

I'm trying to post a message on a MSMQ using WCF with a MsmqIntegrationbinding. Sending works but when I look at the message that has been sent to the queue. The encoding is incorrect. Is it possible to change the message encoding to UTF-16? I…
Casper
  • 135
  • 1
  • 12
2
votes
3 answers

WCF with MSMQIntegrationBinding does not pick up a message from queue

I have a BizTalk 2006 app which has a sendport using MSMQ. I have also a WCF winforms hosting app with several WCF services (in the development environment, in production I use a windows service as hosting). One of the WCF services that I created…
Patrick Peters
  • 9,456
  • 7
  • 57
  • 106
2
votes
1 answer

Exception in creating a WCF Service using MsmqIntegrationBinding

My machine is Windows 7 ultimate (64 bit). I have installed MSMQ and checked that it is working fine (ran some sample codes for MSMQ). When i try to create a WCF Service using MsmqIntegrationBinding class, i get the below exception: "An error…
Ajit Singh
  • 1,016
  • 13
  • 26
2
votes
1 answer

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 really need to contaminate the service contract with…
StanislawSwierc
  • 2,571
  • 17
  • 23
2
votes
2 answers

MSMQ, Message is put on queue and disapears but is never picked up by service contract

I have a local private queue. I also have a WCF-service inside an MVC-application that listens to the queue using msmqIntegrationBinding. The problem is that the service contract is never invoked when a message is queued but the message disapears…
Spetastium
  • 205
  • 3
  • 12
1
vote
1 answer

WCF MsmqIntegrationBinding - Not picking Messages off of the queue

I have a legacy client that is writing messages to a queue (MSMQ). I wanted to use a WCF service to pick the XML messages up off of the queue. I followed some of the MSFT docs and poked around at other examples, but i can't seem to get it to work.…
scarpacci
  • 8,957
  • 16
  • 79
  • 144
1
vote
1 answer

Sending message to msmq queue via msmqIntegrationBinding

So I'm trying to configure my client code to send messages to MSMQ queue. I followed the steps described in here: https://msdn.microsoft.com/en-us/library/ms789008(v=vs.100).aspx?cs-save-lang=1&cs-lang=csharp and my client code looks as below: class…
Marek M.
  • 3,799
  • 9
  • 43
  • 93
1
vote
1 answer

Use workflow service with msmqIntegrationBinding

I have been struggling with setting up a workflow service that uses a msmqIntegrationBinding. The problem I have now is that I always get this serialization exception "System.ServiceModel.ProtocolException: An error was encountered while…
1
vote
0 answers

Azure ServiceBus Dynamic activation like MSMQ

We have an existing application that uses MSMQ and WCF Service to receive messages from the queue and process them. The WCF service is configured as a WAS service in IIS and uses msmqIntegrationBinding binding. The service is called automatically…
1
vote
1 answer

WCF not processing MSMQ message with binary format

I have a WCF Windows Service that retrieve MSMQ messages. The SubmitPurchaseOrderInMessage doesn't seem to get called neither do I see any messages in the queue. Code is shown below. WCF class: public class OrderProcessorService : IOrderProcessor { …
arjun
  • 625
  • 10
  • 27
1
vote
2 answers

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 contract and the service started successfully.…
StanislawSwierc
  • 2,571
  • 17
  • 23
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
2