Windows Azure Service Bus is a messaging infrastructure that sits between applications allowing them to exchange messages in a loosely coupled way for improved scale and resiliency. Service Bus is managed and operated by Microsoft with a 99.9% monthly SLA.
0
votes
3answers
23 views
Debugging a deployed cloud service app
How can a deployed cloud service application be debugged?
Basically, i am trying to render RDLC report in my application using Topics & Subscriptions.
Whenever i run the cloud app locally, i get ...
0
votes
2answers
21 views
Deleting dead topics in Azure Service Bus
I've tried to do my homework on this issue but no searches I can make have gotten me closer to the answer. Closest hit was Detect and Delete Orphaned Queues, Topics, or Subscriptions on Azure Service ...
2
votes
0answers
29 views
Can I use reliable messaging with windows workflow and and azure service bus?
Is it possible to have a xamlx workflow which can receive a message from the service bus without deleting it and can instead call Complete() or Abandon() on the message?
Anyone got an example of ...
0
votes
1answer
21 views
Use Hybrid API in Azure Service Bus Queues
Is i possible to use Messaging API to send message to the Queue and Receive using WCF integration (NetMessagingBtinding) and if so how to do it ? what is the service contract ?
Thanks
Offir
0
votes
1answer
25 views
Service Bus MessageSession accepted but Receive returns null
We use Azure service bus queue, and receive messages using the AcceptMessageSession (code below).
Accepting the MessageSession succeeds, but then when I call Receive on the MessageSession, null is ...
0
votes
1answer
42 views
How to control NServiceBus queue name when hosted on Azure?
For some reason the queue hosted on windows azure is not respecting the .DefineEndpointName() configuration.
The queue name on Azure Bus is always named after the worker role that's hosting it. While ...
0
votes
0answers
41 views
Azure Service Bus File Streaming
I have a little console service running on my server that exposes it's endpoint to an azure service bus namespace. I am using webHttpRelayBinding in Streamed mode. I am using the microsoft sample ...
0
votes
1answer
30 views
Service bus QueueClient returns null brokered message even queue has thousands of messages
I am using Service Bus Queue to pass items from producer to consumer. Producer is able to successfully send the items to the queue and consumer was receiving correctly but then it is showing weird ...
-1
votes
0answers
29 views
MessagingEntityNotFoundException 40400:Endpoint not found
I am running on premise Windows Service Bus (Topics & Subscription) 1.0 and I am getting the exception MessaingEntityNotFoundException 40400: Endpoint not found.
I jus cant figure it out why i am ...
-1
votes
0answers
18 views
Publisher Subscriber model emails using c#
I have to create a tool with the following specifications ?
1)A portal where users can go and subscribe
2)Subscription is for few reports
3)Here reports are not fixed , they are generated as per ...
0
votes
0answers
51 views
Why might our service that listens to Azure service bus queue using NetMessagingBinding stop receiving messages?
We have a WCF service that listens to an Azure servicebus queue using the NetMessagingBinding. However we are finding that sometimes the service seems to stop being notified when messages arrive, ie ...
0
votes
3answers
65 views
What's the proper way to abandon an Azure SB Message so that it becomes visible again in the future in a way I can control?
So the scenario is that I'm using an SB queue to throttle outgoing callbacks to other services. One of the standard problems with calling back to other services is that they may be down for ...
0
votes
2answers
91 views
Serialization Exception when attempting to receive Azure Service bus message via Topic/Subscriptions
I am recieving a Serialization Exception when attempting to parse the messaage recieved when subscribed to an Azure Service Bus topic. Anyone see what I am missing? I am using the ...
0
votes
2answers
47 views
Determining how many messages are on the Azure Service Bus Queue
I know there is a way to determine the number of messages (or approximate number) in the Azure Queue (Store Account); however is there a way to query for the number of pending messages on an Azure ...
0
votes
1answer
88 views
Azure Worker role Webapi hosting + Service Bus
I would like to be able to pump messages from the azure service bus and dispatch them to Webapi controllers in a worker role. I have seen this excellent (series) article ...
0
votes
2answers
84 views
Testing Azure dead letter service bus queues
We have a service which listens to a Azure service bus queue. We have another service which listens to the dead letter queue of this queue. We also have a series of tests which run against our Azure ...
1
vote
1answer
95 views
WCF Concurrent Connections and Azure Service Bus Relay
I have a WCF service listening to the Azure Service Bus Relay which for reasons I cannot change I am self hosting in a Windows Service.
Once the service is put under concurrent load - typically by ...
0
votes
2answers
167 views
Is Azure Service Bus supposed to replace your SOA
Previously in my web applications when a CRUD operation (or any other task for that matter) was made (from the UI) I would use a simple pattern like the following utilizing WCF.
GetUserByIDResponse ...
0
votes
2answers
68 views
Azure Service Bus Brokered Message Security
I'm using Brokered Messaging (Topics/Subscriptions) in Azure Service Bus and I'm curious how (or whether) the communication is secured using SSL.
I'm sending and receiving messages using the ...
1
vote
1answer
46 views
How to change the properties of a service bus queue?
I am using service bus queues to communicate between web role and worker role. Sometimes web role messages are not being accepted by worker role. But it immediately accepts the next message i send. So ...
1
vote
0answers
51 views
azure service bus timeouts
I'm have 2 topics in my azure service bus.
topic1 = livetopic
topic2 = testtopic
live topic is timing out when I try to add any messages.
If I change my code to use testtopic it is fine.
I've ...
3
votes
2answers
70 views
WCF or ServiceBus?
I'm developing a cloud application, that indexing a large number of documents (with lucene), and hosting a wcf service to search it.
I have 3 roles:
I web role, which is hosting the WCF service, and ...
0
votes
2answers
98 views
How to do background work(like worker role) in web role(IIS)?
I am working on azure MVC4 application, i need to read messages from servicebus then update online users through IIS(by SignalR). I want to run some worker role type of process within the web role. ...
1
vote
3answers
75 views
Service Bus Brokered VS Relayed Messaging
I have a question that is confusing me what are the differences between the types of service bus, the brokered messaging and the relayed messaging? I am not looking for it from the development ...
0
votes
1answer
41 views
Cleaning up stale Azure Service Bus topic subscriptions
I create subscriptions per client instance and would like to understand good practices on cleaning up stale subscriptions if the client crashes or closes unexpectedly.
Is there any way to determine ...
0
votes
2answers
43 views
Azure Service Bus - Own hosting
Can I use the same service bus Azure uses and host it in my own environment? If not what service buses are simple and effective and work well with low latency/bandwidth?
1
vote
2answers
58 views
How to setup Azure Content Based Routing by Convention?
Is there anyway for azure to route messages to appropriate handler/operation/subscriber based on the message type?
In NServiceBus, when an event is publishedd, only subscribers that can handle the ...
0
votes
1answer
46 views
Is Azure TopicClient threadsafe?
I've been dealing with a spate of Timeout's from TopicClient and I think it may be related to object lifetime and disposal.
I'm using the TopicClient class from Microsoft.ServiceBus.Messaging and ...
0
votes
2answers
90 views
Why Azure Service bus doesnt work when accessed by two worker roles?
I am using service bus to communicate between web role and worker role, but it has been giving me some erratic results. I have deployed my cloud project to azure. So surprisingly when i run just the ...
1
vote
1answer
112 views
How to send a message to Azure service bus queue from a Azure mobile services script
I am trying to make a hybrid application on Azure which uses both mobile services and a worker role. In a script (Node.js) which runs on mobile services DB, I want to send a message through service ...
0
votes
1answer
38 views
Can perform getQueue() for nonexistent Azure SerivceBus Queue using JAVA sdk
In the last 26 or so hours calls to ServiceBusConstract.getQueue(path) where path is a non-existent queue are throwing a ServiceException whose ultimate cause is a binding issue.
Caused by: ...
1
vote
1answer
135 views
Calling SignalR client from webfarm
I have the following message transport scenarios
Client -> Calls SignalR -> Calls NServiceBus -> Process Message internally -> Calls NServiceBus Gateway service with Result -> Calls SignalR Hub -> ...
0
votes
1answer
37 views
Outgoing data Service Bus for Windows Server
For the Service Bus for Windows Server performance counters are available for the number of incoming and outgoing messages per second. But a performance counter for the average incoming or outgoing ...
2
votes
1answer
63 views
Receiving Non-Null Messages when receiving from empty Azure ServiceBus Queue using Java SDK
When retrieving messages from an SB Queue using the Java SDK (0.4.1), a non-null ReceiveQueueMessageResult is returned even if the Queue in question is empty. Calling getValue() on that result returns ...
1
vote
0answers
92 views
Azure Service Bus and transactions
I'm new to Azure Service Bus and I'm trying to establish a transactional strategy for queuing messages. Since SQL Azure doesn't support MSDTC and, therefore, with a distributed TransactionScope, I ...
-1
votes
1answer
51 views
How to create a message in Azure Service Bus Queues after a new item is added to a Sharepoint 2013 list? [closed]
I need to create messages on a Windows Azure Service Bus Queue every time an item is created under a specific Sharepoint 2013 List. Later I would process those messages with another application.
Some ...
0
votes
1answer
116 views
NullReferenceException at constructor when resolving dependency with Unity IOC for a Windows Azure cloud service
I have a Windows Azure cloud service with a web and worker role. Both roles use a Unity container in the composition root to register types (latest nuget pkgs as of this post).
All this code works ...
0
votes
3answers
89 views
Do Azure Service Bus Notification Hubs work with websockets and javascript?
I am interested in using Azure Service Bus Notification Hubs. However, my first "client" will be a websocket based connection to a ASP.NET MVC site with Knockout. Currently, I'm trying out SignalR ...
0
votes
0answers
44 views
Microsoft.ServiceBus InvalidOperationException 0xe
I received several of these exceptions when trying to use Azure queues with a high load. The code has been tested before, and several queues were created without issue, however I received a lot of ...
0
votes
1answer
75 views
BrokeredMessage sent/parse messages Serialize POCOs
I am registering specific messages that when received call specific events.
I see BrokeredMessage accepts an object, which I understand I would need to implement ISerializable for all messages.
...
0
votes
2answers
87 views
with azure brokeredmessage get the body without knowing the type
When you are using the brokered message in the Azure Service Bus, you can retrieve the body of the message with the call .GetBody. The code is simple:
var msg = subscription.Receive();
MyPayload ...
0
votes
1answer
105 views
SignalR with Service bus in Azure WebSites
I would like to use Azure Website to deploy a website with signalR, using Azure ServiceBus. Is it possible ? Or i have to use azure roles ?
FYI, got this error :
Unable to resolve the instance ...
0
votes
1answer
124 views
Send message to Service Bus Queue via REST and receive message via TCP?
I have a Azure Service Bus queue. I am wanting to use the REST API to post a message to the queue but use an IIS hosted, WCF service using netMessagingBinding to receive the message.
Does anyone have ...
0
votes
2answers
103 views
Azure Service Bus broadcast to all worker role instances
I am trying to use to Azure Service Bus to broadcast a message from a Web Role to all the instances of a single worker role. This is the code I use to receive messages:
// Create the topic if it does ...
1
vote
1answer
86 views
Azure service bus timeout
Today I had a problem sending messages to an azure service bus topic.
I have 260 subscribers. Most of them had 0 messages pending, a few that had their client application switched off had about 8,000 ...
1
vote
2answers
135 views
Windows Azure Inter-Role communication
I want to create an Azure application which does the following:
User is presented with a MVC 4 website (web role) which shows a list of commands.
When the user selects a command, it is broadcast to ...
0
votes
1answer
52 views
Azure service bus for embarasingly parallel
I'm trying to use the azure service bus for an embarassingly parallel problem - one that can be divided up into N independent sections. It is essentially a map/reduce problem, but I don't want to use ...
1
vote
3answers
89 views
Azure service bus dropping messages?
I am trying to build a simple Web API REST service in Azure with a service bus queue worker on the back end. I can send a single message from the Web API to the worker just fine. However, I was ...
1
vote
1answer
71 views
Windows Azure MessageLockLostException
I'm having issues with Azure Message Bus Queues.
I'm having MessageLockLostException thrown and The request operation did not complete within the allotted timeout of 00:01:10. The time allotted to ...
1
vote
2answers
97 views
Basic orchestration with Azure Service Bus?
I'd like to understand how much of the following scenario is supported by the Azure Service Bus:
Worker server notifies an unknown number of webservers of an event
Each web server processes the ...




