Tagged Questions
0
votes
2answers
43 views
c# windows azure - queuing an entity, model or POCO
I have this in my program,
string message = string.Empty;
queue.AddMessage(new CloudQueueMessage(message));
I can queue strings, its working but what if I have my own model, how ...
0
votes
1answer
38 views
Invoke and BeginInvoke are called but never resolved
I am taking care of the GUI thread of a piece of software.
I have to display inside a gridview data that needs to be constantly polled from the underlying APIs.
I created a method called Sync() ...
0
votes
2answers
92 views
MessageQueue and Async / Await [closed]
I only want to receive my message in a async method! and its freezing my UI
public async void ProcessMessages()
{
MessageQueue MyMessageQueue = new ...
1
vote
1answer
78 views
rabbitmq consumer becomes a producer
I am receiving messages from RabbitMQ inside a consumer. I have to process that message and publish the processed message into a different queue. How would I accomplish this?
My code is
using ...
1
vote
1answer
145 views
MQRC_Q_MGR_NAME_ERROR exception in IBM MQ and .NET
I am using MQ.NET classes, however when i specify the correct queue manager, i still get this below error.
Exception:
CompCode: 2, Reason: 2058
MQRC_Q_MGR_NAME_ERROR
Data: ...
0
votes
0answers
51 views
taking focus away using a message box in a Validating event handler causing unexpected behavior
this one is quite strange.
my winforms app has one list view, one text box and one button(OK).
I have handled mouse_leave event of Text box.
private void txtName_Leave(object sender, EventArgs e)
...
0
votes
1answer
97 views
c# System.Threading.SynchronizationLockException when calling System.Messaging.MessageQueueTransaction.Commit()
My code reads transactional messages from a message queue. The code has run thousands and thousands of messages and all of a sudden when I commit one of the previously read messages an exception is ...
0
votes
0answers
12 views
Message Queuing Solutions that does not rely on separate service application [duplicate]
I've been reading about Message Queues particularly MSMQ and RabbitMQ. The problem is, all of these programs needs to run as a separate application. MSMQ for example needs to run a separate windows ...
3
votes
2answers
197 views
parallel processing of a queue
I'm trying to find a way to process a queue in several threads, dynamically adjusting the number of consumers. Basically the task is very well known: multiple producers create messages and submit them ...
4
votes
3answers
167 views
How to create custom message pump?
I am doing a small exercise where I need to create something akin to a message pump. What I have is a queue of work to do, and I want the work to be done entirely on one thread while any thread can ...
0
votes
1answer
376 views
read message queue sent time from MSMQ Journal
I have an MSMQ with an enabled Journal. And due to the fat that we receive more than 1000 messages per day I want to clear the Journal to keep only the message from last 2 days. Therfore I want to ...
0
votes
1answer
150 views
Send message to SQL Server message queue from C# Win CE
I have a queue called log_line_queue in database cja on SQL Server ITSERVER.
I have a C# Win CE application running on a mobile device. I want to send a message from this application to ...
5
votes
0answers
51 views
MessageQueue dropping message after previous message sent too quickly [closed]
I have a Windows Service and Office Add-In communicating over a private MessageQueue, I've used this MSDN Library example to implement EventHandlers on each side.
I've added a button within the ...
7
votes
2answers
303 views
Awful MSMQ Performance Using ReceiveById
Just 20 message per second! That is all I got! Here is the code that peeks 50 message from queue and receives them in parallel using ReceiveById. Total number of messages in queue is 500. I have ...
1
vote
1answer
106 views
Microsoft MessageQueue Formatter property is always null
I have the following problem with a basic Microsoft Message Queue implementation:
On the reading side the Formatter property of the message is always null, no matter what i input on the sending side.
...