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
3
votes
4 answers

What WCF binding is most performant?

I have to get the maximum throughput performance in my WCF service. In one of my tests the service below got only 50k data items per minute using NetTcpBinding. Would a disconnected binding like NetMsmqBinding improve this performance? Service and…
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
2
votes
1 answer

WCF service hosting failing while using netMsmqBinding binding with IIS hosting

The WCF service while hosting with IIS is failing. The web.config for the service is
user457485
  • 267
  • 3
  • 15
2
votes
2 answers

How do I set the Priority on client side of MSMQ message sent to a WF Service activated via MQ

I have a WCF activated WorkFlow Service (XAMLX) setup (hosted using WorkflowServiceHost). This WCF WebService has a 'NetMsMqBinding' binding and a net.msmq based endpoint which is used by clients to schedule operations. On the client side, I've…
bhavinb
  • 3,278
  • 2
  • 28
  • 26
2
votes
1 answer

NetMsmqBinding WAS service fails to read messages from remote MSMQ queue in a workgroup

We have a service that is hosted in IIS using WAS with the net.msmq binding. The service reads messages from a private transactional MSMQ queue. I need it to work by reading from a queue that is on a different machine to the service. I can get it…
stevejay
  • 884
  • 9
  • 19
2
votes
1 answer

MSMQ calls over HTTP not reaching destination queue

I have a WCF service that uses MSMQ communication, when i run the service on my local netwrok, i configure the service endpoints in the client config files to point to the host computer, for example if the endpoint specified on the service host…
Mohammad Sepahvand
  • 17,364
  • 22
  • 81
  • 122
2
votes
1 answer

Does WCF's netMsmqBinding requires any MSMQ package installation at the client side?

I'd like to use WCF+MSMQ(netMsmqBinding) and I was wondering if I'd need to install anything MSMQ related at the client side, other than my client application and the .NET framework of-course.
Ran
  • 534
  • 6
  • 12
2
votes
1 answer

MSMQ in a server farm

We are considering using MSMQ as a message processing service in our application. What we want is - MSMQ in a farm of servers sitting behind Network Load Balancer (NLB) that distributes load among the nodes. I have the following questions for which…
muruge
  • 4,083
  • 3
  • 38
  • 45
2
votes
1 answer

Random MSDTC exception with WCF over MSMQ

We have a service that is performing WCF calls over MSMQ using the NetMsmqBinding. Unfortunately we're seeing a random (every few days after thousands of calls) AccessViolationException coming out of the MSDTC service. This error is only happening…
mattmck
  • 431
  • 4
  • 16
2
votes
2 answers

Message Queue service messages don't arrive

I've got this WCF service over message queuing. The service is configured like this:
Serve Laurijssen
  • 9,266
  • 5
  • 45
  • 98
2
votes
1 answer

How to use MSMQ in WCF?

I can work with many WCF bindings, except netMsmqBinding. All I get is: CommunicationObjectFaultedException: "The communication object, System.ServiceModel.ServiceHost, cannot be used for communication because it is in the Faulted state." at…
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
2
votes
0 answers

Is WAS activation over MSMQ a legend or what?

I'm working on my fourth or fifth implementation of a WCF service over MSQM with IIS/WAS activation. And I was never able to make it work properly. It's always the same story: my services are activated only if the IIS web site was interacted some…
MatteoSp
  • 2,940
  • 5
  • 28
  • 36
2
votes
0 answers

"netMsmqBinding" lost message

I have a WF4 that its hosted in a Windows Service and works with netMsmqBinding. All works well when the service its started. The service read the private queue and process the message okey. The problem is when the windows services is stop, i…
2
votes
1 answer

How to receive MSMQ Messages

Whats the best way to receive MSMQ messages. I used the following code, but after receiving MSMQ messages not getting removed in Queue var msgEnumerator = myQueue.GetMessageEnumerator2(); var messages = new…
Vishnu
  • 1,029
  • 4
  • 14
  • 24
2
votes
0 answers

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 system... after some time WCF…
samash
  • 757
  • 2
  • 15
  • 32
2
votes
1 answer

Net.Msmq Binding Not Picking Up Messages in Queue as soon as the application pool gets recycled

"when the application pool is "alive" the service picks up the messages correctly, but as soon as the application pool gets recycled (because of timeout or any other reason), the service stops picking up the messages, that just sit in the…
user1935938
  • 113
  • 2
  • 7