1
vote
1answer
7 views
MSMQ backed WCF service hosted in a windows service fails on startup
I have a WCF service hosted in a Windows service that I set to Automatic so it will start automatically when the server is brought up. The service is endpoint is MSMQ backed.
When I start the service …
0
votes
2answers
29 views
MSMQ - Create and Send Message
I have a public queue created in a remote machine. I am able to access the queue, create a message and send it from my workstation. However, when I access the remote machine that hosts the message …
0
votes
1answer
272 views
MSMQ Private queue automatically remove unread message beyond 24 hours
Hello,
I use MSMQ through WCF to store messages in private queue.
(private queue hosted by Windows Server 2003).
Messages are stored only for 24 hours and automatically removed from queue, somebody …
1
vote
2answers
29 views
Private or Public MSMQ
We are using Queue for few of are WCF services.
We are using NetMSMQ binding for the WCF services which use Private MSMQ.
The system works OK on our QA environment.
I am not sure of any real …
2
votes
5answers
542 views
Java and MSMQ
Hi everyone,
I was curious if anyone had any suggestions on a Java library that provides access to MSMQ? I've downloaded the trial of the J-Integra Java-COM library and have built and run their MSMQ …
0
votes
1answer
37 views
Cannot determine whether a queue with the specified format name exists.
I get the exception when executing the following code. Any ideas what is wrong?
string queueName = "FormatName:Direct=TCP:1.1.1.1\\Private$\\test";
MessageQueue queue;
if …
1
vote
4answers
44 views
Windows service start order causes faulted state in WCF Service
I have a WCF service hosted as a Windows service. The WCF service uses msmq queue on the same server.
When the server is restarted my WCF service starts before the msmq service. This puts my WCF …
0
votes
1answer
8 views
MSMQ querying for a specific message
Hello,
I have a questing regarding MSMQ...
I designed an async arhitecture like this:
CLient - > WCF Service (hosted in WinService) -> MSMQ
so basically the WCF service takes the requests, …
1
vote
3answers
68 views
Is it possible to lose messages using MSMQ MessageQueue.Peek with a timeout?
Hello world! I am currently having an issue of losing a message. This error occurs rarely, but happens often enough to be annoying. Here is the context of the issue:
I have turned on the message …
1
vote
0answers
10 views
Poison Message Handling in WCF MSMQ 4.0
Hi,
I am trying to handle the poison messages in WCF with MSMQ transport.
I followed the below link for creating the original and poison services.
…
0
votes
2answers
86 views
Can I peek into empty MSMQ without getting exception?
As far as I can see from the documentation, the way you are supposed to check if there are messages in a message queue is to use the Peek method. You then rely on it failing with a …
1
vote
1answer
18 views
Localhost issue with Net.Msmq endpoints on Windows 7
I've just moved my development to a Win 7 64-bit machine and am having some wcf endpoint issues. As far as I can see the net.msmq endpoints that point to localhost do not work. The messages do get …
0
votes
1answer
32 views
MSMQ Access issue in NServiceBus with asp.net web service.
Hi
I am trying to implement publisher - subscribe in my project of asp.net (wcf) web services. When i am trying to create bus in global.asax
protected void Application_Start(object sender, …
0
votes
0answers
19 views
IIS Hosted MSMQ WCF application failing to start because unrelated que exist on the machine
I have a problem that is pretty much desctibed on this blog:
http://www.keithelder.net/blog/archive/2008/11/24/workaround-for-wcf-netmsmqbinding-bug-the-service-queue-does-not.aspx
the very problem …
3
votes
5answers
2k views
How do I prevent a WCF service from enter a faulted state?
I have a WCF Service that should not enter the faulted state. If there's an exception, it should be logged and the service should continue uninterrupted. The service has a one-way operation contract …
