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

How to use the New Relay in Azure

Azure recently separated the Relay from Service Bus name space. Under the new relay we have WCF Relays and Hybrid Connections. They are urging people to use the new Relay, but i couldn't find any nuget packages that supports new Relay. There is a…
0
votes
1 answer

c# make http call to service on premise (behind firewall) using Azure Service Bus

I have a REST service on premise behind firewall, etc. The service is not exposed to the internet. I need to connect securely to that service from the internet. I am wondering if Azure Service Bus can pass a HTTP Request to a service and return the…
user2818430
  • 5,853
  • 21
  • 82
  • 148
0
votes
1 answer

security in azure service bus relay

when working with service bus relay how's the security done?. Both transport and message level? If we use SAS key based sb endpoint does it mean it is https by default? At Message level I believe we have to do the regular encryption and decryption.
Aravind
  • 4,125
  • 1
  • 28
  • 39
0
votes
1 answer

Is it possible to connect to a WCF web service on premise from azure using Azure Service bus relays without changing WCF service

I have to add a Service Bus Endpoint in the WCF service in order to communicate with it from the AZure Service Bus using Relays. Now I have few services in on-premise whose configuration I cannot change. Is it possible to communicate with those…
Charu
  • 2,679
  • 6
  • 35
  • 52
0
votes
1 answer

Azure Service Bus Relay and TrackingId: where to find more information on errors

we are using Azure Service Bus Relay to connect to a on-premise intranet WCF service from a web site on the internet. It has been working fine for months. Since yesterday the serice was not reachable from outside (bad gateway, …
0
votes
2 answers

azure service bus relay with Javascript client (AngularJS)

We are implementing Azure Service Bus Relay to consume WCF services and we have successfully consumed services using service bus from ASP.NET MVC application. We want to consume this services using Azure Service Bus Relay from AngularJS. Is there…
Nikhil
  • 213
  • 4
  • 18
0
votes
0 answers

how to call one service from another service using azure service bus relay

We are using WCF services with Azure service bus. I referred this link: https://azure.microsoft.com/en-in/documentation/articles/service-bus-dotnet-hybrid-app-using-service-bus-relay/ I have following scenarios: I have created Service1 which is…
Nikhil
  • 213
  • 4
  • 18
0
votes
2 answers

Azure Service bus Relay with Java

I am trying to have a POC running, with which I can use Azure Service Bus relay with Java as backend. Azure Service Bus relay allow .NET libraries to integrate. There is no Java library available. If it is not possible with Java, is there any other…
0
votes
2 answers

Cannot expose mex endpoint using netTcpRelayBinding

I have a WCF service which I'm consuming using an azure service bus relay. I'm trying to expose the mex endpoint but I'm encountering this error Could not find a base address that matches scheme sb for the endpoint with binding…
Ejaz
  • 145
  • 1
  • 10
0
votes
1 answer

Azure Service Bus Relay and http protocol

I have to set up an Azure service which must be accessible for other platforms (android, iOS). That's why I try to set it up using http or https protocol, rather than sb (Service Bus) protocol (ref: Service Bus Bindings, last paragraph).…
Dariusz Wasacz
  • 991
  • 1
  • 12
  • 16
0
votes
1 answer

Unable to access WCF service from Mobile Service in Azure

I wanted to access WCF service from Mobile Service in Windows Azure. For this, I am using Service Bus Relay connection which is configured with credentials to call the WCF service. When I published this Mobile Service on my local machine, I could…
0
votes
0 answers

Task Based service interfaces on azure service bus

When using net.tcp relay communication in azure we keep getting contract/filter mismatch exceptions on the client. The problem exists only under these conditions: Using azure net.tcp relay binding Binding set to Hybid mode (running locally so the…
Rob
  • 663
  • 8
  • 8
0
votes
1 answer

Azure service bus - expose data from on-premises (call custom service)

I want to make some kind of agent (windows service maybe) that will run in background on a server on-premises, and expose an endpoint in Azure Service Bus. I have a worker role in Azure that once a day will send a message to the agent on-premises…
0
votes
2 answers

How to connect to a relay service hosted on the service bus in iOS

I want to use Azure service bus in my iOS app to communicate with server i have went through the below link. its pointing to C#.Need suggestions to work on…
0
votes
2 answers

How to integrate Azure Service Bus with Windows Store apps

I am working on a Windows Store app which is connected to Azure Service Bus Topic. I want to use the service bus topics in my application. Is this possible? I can't use NamespaceManager which is discussed here:…