Tagged Questions
7
votes
3answers
629 views
MSMQ wcf activation issue with .net 4.0 and server 2008
I have .net 4.0 application ported from net 3.5 that uses net.msmq running on server 2008 x64
Setup
net.msmq Service with address "net.msmq://localhost/private/msmqdataservice.svc"
net.msmq ...
5
votes
5answers
511 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
261 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
4answers
1k views
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 ...
1
vote
1answer
69 views
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.
1
vote
1answer
134 views
MSMQ to WCF, enabling Two Way Communication
We are building a common WCF Service which is being used by two different types of clients, ones which will use the normal Two way http binding, while the other ones will use the MSMQ binding, as the ...
1
vote
1answer
142 views
MsmqException (0xC00E0051) after 60 seconds
I am using the netMsmqBinding with a transactional queue, and although the WCF service is called without problems, the service is throwing a MsmqException just 60 seconds after the message is ...
1
vote
1answer
74 views
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 ...
1
vote
3answers
314 views
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 ...
1
vote
1answer
212 views
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 ...
1
vote
0answers
137 views
Why are my messages continuing to be retried After the error has been handled?
I have a poisoned message service. When I receive a poisoned message, the error is handled
by a poisoned message handler, which sends an email, which then moves the message off of the queue. the ...
0
votes
1answer
40 views
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 ...
0
votes
2answers
63 views
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 ...
0
votes
1answer
137 views
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 :
...
0
votes
1answer
26 views
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 ...
0
votes
0answers
49 views
WCF MSMQ binding , calls getting block
I am using WCF netMsmqBinding. My application runs 24x7, and it pick calls from msmq and insert it in database. After around 20,000+ inserts due to some database issue(I am using Nhibernate), call ...
0
votes
1answer
97 views
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 ...
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
389 views
WCF Msmq problem reading messages using netMsmqBinding
I have a WCF service using netMsmqBinding that I am using to add messages of Msmq<string> to a queue. The messages are added fine and I can see them in the queue via the computer management ...
0
votes
2answers
742 views
Why can't my netmsmqbinding can't do twoway binding?
I'm using WCF and netmsmqbinding and I am getting the following error message:
Contract requires TwoWay (either request-reply or duplex), but Binding 'NetMsmqBinding' doesn't support it or isn't ...
0
votes
0answers
293 views
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 ...
0
votes
2answers
539 views
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 ...
0
votes
2answers
914 views
Calling WCF with netMsmqBinding inside TransactionScope stopping transaction
I have a WCF logging service that runs operates over MSMQ. Items are logged to a Sql Server 2005 database. Every functions correctly if used outside a TransactionScope. When used inside a ...