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
12
votes
3 answers

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 perspective but I want to understand more the concept…
hhaggan
  • 619
  • 4
  • 11
7
votes
1 answer

Azure Service Bus Relay Occasional FaultException

We can't determine why the Azure BasicHttpRelay is throwing an occasional FaultException without any details. We've enabled WCF diagnostic tracing, but the available stack trace information is still the same. It seems like the WCF client channel…
6
votes
0 answers

Identify a Azure Relay ServiceBus Listener

I am experimenting with Windows Azure Relay Service Bus and WCF... I have a Service Bus with 3 listeners, is there a way to find out any information about where those three listeners point to? As I started only one WCF service, it's a bit weird I'm…
Vittorio Sozzi
  • 103
  • 1
  • 9
5
votes
2 answers

Azure service bus relay - get data from on premise

Is it possible the following scenario in Azure? I need to get data from customer premises into windows azure, process it and save it in db or table storage. The customer premises are behind firewall/nat .. etc. What is the best way to build one…
David Dury
  • 5,537
  • 12
  • 56
  • 94
4
votes
1 answer

Azure service bus relay converts 204 'No Content' responses into 502 'Bad Gateway'

I have an Azure service bus relay that exposes an on-premise service to external clients. If I hit the on-premise service directly with a particular request (a REST request for resource that doesn't exist), I get a 'HTTP/1.1 204 No Content'…
user381624
  • 676
  • 1
  • 5
  • 21
4
votes
2 answers

Disconnection issues with azure service bus relay

We are running some long-running test apps with Azure Service Bus relay over http, hosted in a windows service and most of the time, these run fine for 2-3 days. However every so often an internal network glich may occur (e.g. firewall reboots) that…
GrahamB
  • 1,368
  • 15
  • 35
3
votes
1 answer

What is max throughput and message rate a message unit can support in Azure Service Bus

I am trying to do cost calculation for the azure service bus premium tier. I could not found the answer to the following simple questions What max message rate a single message unit can support What max throughput(data size/sec) a single message…
3
votes
2 answers

Access Shared Folder Via Azure Hybrid Connection

I'm looking for a way to access the content of a shared folder in the network via Azure hybrid connections. I know I can access to SQL SERVER using Connection Manager, but is there a way to access files in the private network without creating a…
Saeid
  • 1,573
  • 3
  • 19
  • 37
3
votes
0 answers

Azure Service Bus WCF Relay Timeout

I'm facing a problem with Azure Service Bus WCF Relay Service where the WCF client fails to get any result from the on-premise service that is behind a customer's firewall through WCF Relay. The WCF client is running on Azure as an Azure Cloud…
H W
  • 31
  • 1
3
votes
1 answer

Service Bus WCF Relay "An error occurred while transmitting data."

I followed this tutorial and manage to have it work properly somewhere between 10 to 15% of the time. This is my Main method for the client, where the exception takes place: static void Main(string[] args) { …
noitib
  • 148
  • 1
  • 13
3
votes
0 answers

Reusing connections in Azure Relay Bus

we're looking into connecting Azure websites with on-premises WCF services. We want to use the Azure Relay Bus for this. There is a cost involved in setting up the TCP channel for the first time, about 3 seconds in our case. This is understood. We…
3
votes
1 answer

High CPU on an idle ServiceHost connected to Azure Service Bus Relay

My company is using an Azure Service Bus Relay to aggregate summaries of sensitive data into an Azure-hosted application. We have noticed on a pre-production server that after the first few requests are processed CPU utilization by the process…
3
votes
1 answer

304 response in Azure Service Bus relay

I have a request that contains a If-None-Match header that I then compare to the calculated response on the service. If they match and the response hasn't been modified since last I return an empty 304 response. All this works fine as my content…
Riri
  • 11,501
  • 14
  • 63
  • 88
2
votes
1 answer

Leave StreamReader without closing Stream

I'm working with the Azure Relay Service at the moment and faced a problem handling the stream. I need to use this service in a synchronous way as it is required by the software which will use this implementation. I'm opening a stream to the service…
Sandro Paetzold
  • 123
  • 3
  • 9
2
votes
0 answers

Azure WCF Relay Permanently Faulted

I have a number of WCF Relay resources in Azure (created in the 'Relay - PREVIEW' resource pane, rather than indirectly through a service bus namespace). I like the newer interface as it gives me more visibility of the individual relays and their…
Mark W
  • 705
  • 1
  • 9
  • 20
1
2 3 4 5 6 7