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));