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
2
votes
1 answer

NetMsmqBinding losing messages when closing

I have been testing the NetMsmqBinding of WCF with a non-transactional queue. I have found that the service, the part that reads from the queue, will occasionally lose a message when it is closed. For example, if I have a queue with messages of the…
Barguast
  • 5,926
  • 9
  • 43
  • 73
1
vote
1 answer

About LAB EntLib, MSMQ and WCF

I am not really comfortable 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. To do so the Logging Application Block from…
lollancf37
  • 1,105
  • 3
  • 15
  • 27
1
vote
2 answers

WCF and MsmqBinding to remote private queue

We have a WCF log service that uses MsmqBinding and WAS. The issue is that I try to use it from remote computer and that message seems to never reach the destination queue. Here are the facts : Server config List item destination machine name :…
VdesmedT
  • 9,037
  • 3
  • 34
  • 50
1
vote
1 answer

Is there a way to set AdministrationQueue property when using net.msmq (MSMQ) binding on WCF?

We are are thinking how to monitor MSMQ queues that are used from WCF services (with net.msmq binding). Searching for alternatives like Journals, triggers or Administration queue, the last one seems to be more logic as you can get several…
SalvadorGomez
  • 552
  • 4
  • 15
1
vote
1 answer

WCF service to queue all request

I have a wcf service and handle a lot of client (server document generation). This service should receive a lot of request and should be handle in queue. It also have a callback. (callback will return successfully generated document). I am still…
shoden
  • 33
  • 1
  • 7
1
vote
3 answers

Using WCF To send directly to MSMQ queues

I have a windows service that picks up messages from various MSMQs. The service picks up the messages from the queues, and then executes a specific workflow based on the queue the message came in from. Is it possible to configure a WCF service to…
mclark1129
  • 7,532
  • 5
  • 48
  • 84
1
vote
1 answer

How to use MSMQ in Azure applications

My current example: Machine A - PRIVATE queue name - AdminQueue Machine B - PRIVATE queue name - ShippingOrders I have a console application running in Machine-A which pushes messages to PRIVATE queue (machine B- ShippingOrders) I have a WCF…
user2995902
  • 49
  • 1
  • 8
1
vote
3 answers

Read WCF MSMQ Message from C#

I used a WCF client to send msmq message to WCF Service, before WCF Service process the msmq message, I want to check the body of the message. After checking the content of msmq message body, I got below result. But, I failed to get the exact…
Edward
  • 28,296
  • 11
  • 76
  • 121
1
vote
1 answer

Message queueing fails after a few months

We had a problem the other day with MSMQ and I'm trying to understand what is going on. We have like 10 services sending messages to each other. Some with WCF, other with straight usage of System.Messaging. At some point not a single message would…
Serve Laurijssen
  • 9,266
  • 5
  • 45
  • 98
1
vote
1 answer

MSMQ thru WCF is swallowing badly formatted messages, no errors, no warnings

I have a service that responds to messages on an MSMQ, using WCF. When the message is well formatted, it works as normal, and we're happy. When the message is intended for a different service, and the action is different, the message stays on the…
Tim Macfarlane
  • 166
  • 1
  • 6
1
vote
1 answer

Anyone seen this problem with protobuf-net over net.msmq

I am seeing a problem where I send large messages over wcf net.msmq using protobuf-net and get the following error: The formatter threw an exception while trying to deserialize the message: Error in deserializing body of request message for…
fatweasel
  • 13
  • 2
1
vote
1 answer

WCF: Custom ServiceHostFactory errors after Application Pool suspension for NetMsmq but not Http

I've created a custom host factory to support container based serviced instantiation and imperfect async cancellation. The service is instantiated on a per-call basis: public class DIServiceHostFactory : ServiceHostFactory { protected IContainer…
JasonLind
  • 370
  • 2
  • 13
1
vote
1 answer

Delayed MSMQ message to WCF service fails due to kerberos clock skew

I am running a WCF service with a netMsmqBinding on IIS. It is configured to use 'Message' security with the 'Windows' client credential type, which uses kerberos to encrypt and sign the message. The service contract enforces…
JohanG
  • 11
  • 3
1
vote
1 answer

Messages not getting picked up from a queue having underscore in its name

I have a WCF service QueuedService.TicketingService.svc hosted in IIS under application name QueuedService_1_1. So the complete URL for the service is: http://example.com/QueuedService_1_1/QueuedService.TicketingService.svc The service is having a…
sth
  • 146
  • 8
1
vote
0 answers

MSMQ Transport Error

When trying to send a message with "Transport" security, i'm getting the following error: An error occurred while sending to the queue: No internal Message Queuing certificate exists for the user. (-1072824273, 0xc00e002f).Ensure that MSMQ is…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257