Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a java process which needs to communicate with an Azure C# application via storage queues.
When running in Azure Web, the java process is able to read and write messages to storage queues.
However, when I run the java process locally and try to communicate with Azure's emulator, I can read messages from the queue but cannot write to the queue.

Below is the code I use, which hangs on the last line, then times out after several minutes.
Any suggestions will be much appreciated.

CloudStorageAccount acct;
if (configuration.equals(configurationTypeLocal)) {
   acct = CloudStorageAccount.parse(localStorageConnectionString);
} else {
   acct = CloudStorageAccount.parse(cloudStorageConnectionString);
}
CloudQueueClient client = acct.createCloudQueueClient();
_queue = client.getQueueReference(queueName);
_queue.createIfNotExist();
_queue.addMessage(new CloudQueueMessage(txt));
share|improve this question
I gave up on this one and am using Azure cloud storage queue when both in local and cloud mode. – Gilad Nov 26 '12 at 15:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.