Windows Azure Service Bus - A general question
Lets say I have a Silverlight application that currently talks to a WebRole in Windows Azure. Is the Silverlight application also able to directly talk 开发者_运维问答to the service bus without a "controller" component which takes the commands coming from the client and routes them to the worker roles in the Service bus?
The Silverlight application is able to communicate with the Service Bus directly as stated here: http://www.microsoft.com/windowsazure/features/servicebus
Support of REST and HTTP Access from non-.NET platforms
But I'm not sure you want to let your Silverlight app do that, because on the very same page there is the price list for concurrent connections starting at 3.99$ per connection.
EDIT:
As Clemens Vasters commented below, there are changes to the price model for connections. More info here: http://msdn.microsoft.com/en-us/library/windowsazure/hh667438.aspx#BKMK_SBv2FAQ2_1
The Service Bus Samples include a sample on how to use SB within a Silverlight application.
精彩评论