Tagged Questions
7
votes
3answers
655 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 ...
6
votes
5answers
552 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
284 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 ...
3
votes
3answers
744 views
How to check if public MSMQ is empty
Is there any way to check if a public MSMQ is empty? For a private MSMQ it's easy:
private bool IsQueueEmpty(string path)
{
bool isQueueEmpty = false;
var myQueue = ...
2
votes
1answer
49 views
Proper place for initialization code in non-HTTP WCF service hosted in IIS/WAS?
It is my understanding that a WCF service configured for net.msmq will not run as an HttpApplication when hosted in IIS/WAS, which means you don't get the events in Global (Application_Start being the ...
1
vote
1answer
43 views
About LAB EntLib, MSMQ and WCF
I am not really confortable 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.
...
1
vote
1answer
83 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
153 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
165 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
77 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
324 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
0answers
142 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 ...
1
vote
1answer
1k views
MSMQ private queue size limit
I am trying to put messages in a private queue defined on my local computer, but the queue size cannot exceed 8 MB. I am getting an exception every time after that size is reached. The size for the ...
0
votes
0answers
12 views
Failing to get MSMQ WCF Window Service to function
I'm trying to create a MSMQ WCF service, although I'm having troubles running the code. It fails when trying to create an instance of the service. I have MSMQ installed, and can confirm there is a ...
0
votes
0answers
78 views
WCF MSMQ over HTTP Endpoint Works Intermittently
I've got an interesting problem with a WCF MSMQ endpoint. Everything works consistently and as advertised using a Native endpoint. However, I have some clients that cannot get through the firewall ...
0
votes
1answer
48 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
73 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
160 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
79 views
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 ...
0
votes
1answer
29 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
1answer
113 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
53 views
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: ...
0
votes
1answer
244 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
2answers
789 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
302 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
577 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
940 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 ...