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
2
votes
1 answer

Azure service bus relay connecting to unknown ip address: 40.112.124.x:9352

We deliver on-premise software that is exposed to the cloud using Azure Service bus relay, the basic code we use to expose is as follows (I have removed everything identifiable): ServiceHost sh = new…
Erik
  • 134
  • 10
2
votes
2 answers

Can Azure Service Bus Relay be used to expose an ASP.NET hosted WCF service?

I'm working on a project where an ASP.NET WCF Service is hosted on-premises, and it needs to be exposed for use by other applications that are hosted in Microsoft Azure. Azure Service Bus Relay is the desired method to expose the ASP.NET WCF service…
Chris Pietschmann
  • 29,502
  • 35
  • 121
  • 166
2
votes
1 answer

Microsoft Azure, relay bindings and max concurrency

I've set up a ServiceBus Relay with Microsoft Azure. I'm connecting to this with a HTTP backend handling incoming GET and POST requests hitting the Relay. Now, this works just fine. My issue though is that the max concurrency I can get is 2…
NeoDarque
  • 3,222
  • 3
  • 19
  • 21
2
votes
2 answers

What causes Azure Service Bus Relay WCF Service to throw AddressAlreadyInUseException

When we try to start our WCF Service using our Azure Service Bus Relay address and webHttpRelayBinding we get an AddressAlreadyInUseException. We are using the example here: https://code.msdn.microsoft.com/Relayed-Messaging-Bindings-a6477ba0 The…
dannydwarren
  • 556
  • 4
  • 13
2
votes
1 answer

Timeout using Hybrid ConnectionMode with TCP relay binding in azure message bus

I've tried the msdn sample code (http://code.msdn.microsoft.com/windowsazure/Relayed-Messaging-Bindings-ca039161) and have the same issue I've encountered in my own test application. I have an example that works fine in Relay mode, but as soon as I…
Rob
  • 663
  • 8
  • 8
2
votes
1 answer

Which is the maximum time for Client.Receive on a SubscriptionClient on Windows Azure Service Bus

It´s weird and I´m not sure but sometime ago I remember I do something like this SubscriptionClient Client = SubscriptionClient.CreateFromConnectionString(this._connectionString, topicName, subscription); BrokeredMessage message =…
Sergio López
  • 973
  • 9
  • 16
2
votes
2 answers

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 just for testing located here:…
2
votes
1 answer

Multiple clients on Azure Service Bus, receiving individual messages

How do I fetch individual messages to multiple clients, from the Azure Service Bus relay, without having to have a namespace for each client? Background: I have a web service, which has multiple users, which are businesses. Not a huge number, but a…
Anders
  • 894
  • 2
  • 10
  • 25
2
votes
1 answer

How to configure ServiceBusEnvironment Connectivity mode declaritively

WCF service is hosted in IIS and uses netTCPRelayBinding. At some locations the TCP ports are blocked and HTTP must be used. Other times TCP ports are open and this mode is preferred. Thus, I'd like to be able to set the ConnectivityMode to…
1
vote
2 answers

Is it possible to configure an Azure Relay listener that responds to the local addresses also?

I'm new in the Azure Relay use and configuration. I've developed an API that responds with the Relay mechanism ... now my need is to leave the service bus listeners configured by default in Program (or even in startup) like…
Jacob Vame
  • 11
  • 3
1
vote
0 answers

Get the details of Listeners on Azure Relay

I am using Azure ServiceBus Relay and although I am able to fetch the count of the current listeners, I want to know the details of those listeners as well. For example, their id or address. An attribute that I can use to access or target that…
izSaad
  • 579
  • 6
  • 25
1
vote
0 answers

MassTransit vs official azure service bus client sdk

I'm setting up a communication between service fabric .net core services using Azure Service Bus and I'm struggling with pros and cons list regarding MassTransit .net core library and an official Azure Service Bus client SDK. I would like to hear…
1
vote
1 answer

Azure Relay for Soap WebServices

I've recently discovered Azure Relay and it seems very powerful. I have a basic project using it now to expose a WCF Windows Service. I've read in the documentation about how it can be used to expose RESTful services, but I'm having trouble…
LorneCash
  • 1,446
  • 2
  • 16
  • 30
1
vote
0 answers

Not able to list the hybrid relays inside a relay namespace using namespace connection string

I am trying to list the hybrid relays inside a relay namespace. I have tried using NamespaceManager namespaceManager = NamespaceManager.CreateFromConnectionString(connectionString); var _azureRelays = await namespaceManager.GetRelaysAsync(); which…
1
vote
1 answer

Azure Relay Hybrid Connections - how to send synchronous request/response

I'm using hybrid connections to request data from a listener. If I can write and read to the connection, how can I know that the response I've read from the connection matches the request I've given it? For example: private HybridConnectionClient…
zola25
  • 1,774
  • 6
  • 24
  • 44