Questions tagged [azure-servicebusrelay]

The Service Bus Relay Azure service enables developer to build hybrid applications that run in both a Windows Azure data center and user's own on-premises enterprise environment.

The Service Bus relay facilitates integration by enabling developer to securely expose Windows Communication Foundation (WCF) services that reside within a corporate enterprise network to the public cloud, without having to open up a firewall connection or requiring intrusive changes to a corporate network infrastructure.

The Service Bus relay allows developer to host WCF services within existing enterprise environment. Developer can then delegate listening for incoming sessions and requests to these WCF services to the Service Bus running within Windows Azure. This enables developer to expose these services to application code running in Windows Azure, or to mobile workers or extranet partner environments.

The Service Bus allows developer to securely control who can access these services at a fine-grain level. It provides a powerful and secure way to expose application functionality and data from your existing enterprise solutions and take advantage of it from the cloud.

See also the official set of samples for the Azure Service Bus Relay service.

101 questions
0
votes
2 answers

Azure Service Bus Relay and node.js

We've been writing services to access our on-premises databases through Azure Service Bus Relay for awhile now. That means that we've had to deploy them as WCF services. Our web site development is moving to node.js and I would like to begin…
Andy S
  • 8,641
  • 6
  • 36
  • 40
0
votes
1 answer

Azure SDK needed on on-premises server?

I'm looking at exposing a WCF-service through Azure ServiceBus Relay. The service is running on IIS (Windows Server 2008 R2) on-premises. In the samples and documentation I've found, it says that the Azure SDK is needed on the server. That is for…
ehsabed
  • 3
  • 1
0
votes
1 answer

Relay binding not working for Window Server Service Bus 1.1

I have installed Service Bus for Windows Server 1.1 (Not Azure Service Bus) that is having a default namespace. I have downloded the sample from http://code.msdn.microsoft.com/windowsazure/Relayed-Messaging-Bindings-ca039161 and change the…
R J
  • 73
  • 1
  • 6
0
votes
1 answer

What is the use of Default Issuer and Default Key in Windows Azure Service Bus? Does the key need to be secured?

We have created a downloading client-service model application in which a WCF service is hosted on one of our servers and the client application is distributed among the partners. Partners are provided with unique pin using which they can…
0
votes
1 answer

How reuse connection for Service Bus Relay REST Service

We are exposing the REST service via Azure Service Bus. I've seen couple of sample for connection reuse of SOAP Services with ChannelFactory. However I've not come across how to re-use connection for Azure Service Bus Relay REST Service. Could…
Nil Pun
  • 17,035
  • 39
  • 172
  • 294
0
votes
1 answer

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…
Dave
  • 1,835
  • 4
  • 26
  • 44
0
votes
1 answer

Azure ACS Service Identities with Certificate based Credentials

I am exposing a WCF Data Services hosted on IIS through Service Bus Relay using webHttpRelayBinding. While I could find out how to authenticate the service identity using username/password or shared secret. However, I could not find a sample how to…
0
votes
1 answer

Using Windows Azure Relay Service Bus With Windows Phone

I set up a service with windows azure that works perfectly with console app I wont past all my service code because it's alot but heres the client code: static void Main(string[] args) { // Determine the system connectivity mode…
Bob Yaris
  • 19
  • 1
  • 6
0
votes
2 answers

Using Azure Service Bus Topics in Windows Phone 8

I am working on a Windows Phone 8 app which is connected to Azure Service Bus Relay. Since i cant add Microsoft.ServiceBus.dll to the WP8 project, I had to go with BasicHttpBinding which works fine. Now I want to use the service bus relay with…
-1
votes
2 answers

How to manage multiple Azure subscriptions efficiently?

The Maximum number of basic / standard namespaces per Azure subscription are 100 as per the following link (https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-quotas). However I need more and hence the below questions: Is…
-1
votes
1 answer

Azure Relay Service Bus with webHttpRelayBinding with REST/JSON and POST

The following article explains how to build an simple WCF service with Azure Relay Service Bus: https://azure.microsoft.com/en-us/documentation/articles/service-bus-dotnet-how-to-use-relay/ The example shows the use with TCP Binding. I reproduced it…
EricBDev
  • 1,279
  • 13
  • 21
1 2 3 4 5 6
7