Hi,
We're using MSMQ and an integration mechanism which processes the messages. This mechanism analyzes and validates each message under a transactional context and if validation fails, a rollback occurs and the message is delivered back to the queue. Also, the integration mechanism waits for 20 seconds to process error messsages again....
I'm facing the next problem. I have a piece of code that goes like this:
DoSomething(){
using (TransactionScope scope = new TransactionScope())
{
InsertSomething();
InsertSomethingElse();
InsertYetAnotherThing();
ProcessDataRelatedWithThePreviousInserts();
scope.Complete()
}
}
In ProcessDataRela...
We have several choices for logging in our .NET (C#) server application. We are going to use Enterprise Library. So here are the ways to go:
1) Writing log to MSMQ synchronously, then reading MSMQ with Win Service. Queue is on the local machine for server application.
2) Writing log to disk (i.e. rolling text files) synchronously.
3) W...
I'm browsing source codes from two applications sharing one queue using MSMQ. The first application has a thread that writes into the queue while the second application has another thread that reads from the queue. Ordinarily, if you're implementing your own queue, the applications would need a mutex when accessing the queue, right? Howe...
I have a .NET3.5 application that connects to a remote queue (a private queue, running on Windows Server 2008). The client recently was forced to upgrade the machine on which this application ran to Windows 7 from Windows XP. Now, when my application attempts to connect to the remote queue it crashes with an error that it cannot connec...
I have a wcf msmq service. I try to send a message to it. Delivery fails is I specify server's domain name in endpoint address. If it contains ip or netbios name - everything is fine. I am able to ping the sever by it's domain name. DNS server is also reachable and has the needed entry. The messages are left in the system dead-letter que...
Hello,
I'm trying to create a dead letter queue service in wcf with following service configuration:
<service name="NotificationDeadLetterQueueService">
<endpoint
address="net.msmq://localhost/system$;DeadXact"
binding="netMsmqBinding"
contract="INotificationService"
/>
</service>
If I start the service host, I get a System.Me...
Hi all
I'm battling a really weird problem here. I have a Windows 2008 R2 server with Message Queueing installed. On another machine, running Windows 2003 is a service that is set up to send messages to a public queue on the 2008 server. However, messages never show up on the server.
I've written a small console app that just sends a "...
Hi,
Is it possible to queue messages in a separate server and have multiple instances of WCF services hosted in Windows Services in different machines to use the same queue. Using the same queue enables service requests to be kept centrally. the different service instances can get the queue messages one at a time and perform the task.
P...
Hi,
How to send message to public queue of another computer msmq in c#?
Thanks in advance
...
I've written a C# application that puts an XML-object into an MSMQ queue. The queue requires authentication.
MessageQueue queue = GetQueue();
var message = new Message();
message.Formatter = new CustomXMLFormatter();
message.Body = xml.ToString();
message.Label = "From my application";
message.UseAuthentication = true;
queue.Send(messag...
I am not sure where the distributor/s should run when there is a number of clients and a number of servers. If I have a single distributor which all clients send to and all servers get work from then surely it is a single point of failure. Is there a way to remove this weak point?
...
Hi there, I have a scenario where I need a desktop console app to communicate with a Windows Azure Queue... the most important thing is that the message is received by the server eventually. Also, the desktop app may be disconnected from the Internet sometimes. In the traditional WCF+MSMQ approach you'd be able to send a message which ...
Hi folks:
Our MQ service will be moved to outside of local server. I can see current destination queue address as ".\Private$\eventQueue".
What is the format of remote address for sending messages?
Thank you.
...
We're adding support for MSMQ to our product, and I'm responsible for performance testing the application. I have no experience with MSMQ (we currently support IBM WebSphere MQ ), so I thought I'd come here and ask the experts:
For administrative tasks, is there a command line interface for MSMQ? Things like backing up and restoring qu...
Ok, so I'm very VERY new to MSMQ and I'm already confused.
I have created a private queue and added a few messages to it, all good so far. BUT when I retrieve the messages back from the queue the message body contains a empty object of the type I added. By this I don't mean that the body is null, it does have a reference to a type of t...
A part of the application I'm working on is an swf that shows a test with some 80 questions. Each question is saved in SQL Server through WebORB and ASP.NET.
If a candidate finishes the test, the session needs to be validated. The problem is that sometimes 350 candidates finish their test at the same moment, and the CPU on the web serv...
We are building a windows-ce (6.0R3) based device that requires guaranteed and audit-ready message delivery (including store & forward) up to and down from the cloud.
I have been looking for choices beyond:
MSMQ
a proprietary solution (what our
prototype device is using)
AMQP (I have not found any RabbitMQ clients for CE, by example)
...
Can we use the public queues without the Windows domain?
...
Hi there, my goal is to secure the communication between MSMQ Queue Managers – I don’t want unknown clients sending messages to my MSMQ server.
I have spent many hours now trying to get Transport security working for the net.msmq binding in WCF, where MSMQ is in Workgroup mode and the client and server do not have Active Directory… so ...