Questions tagged [nettcprelaybinding]

7 questions
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

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
0 answers

Service Bus netTcpRelayBinding faster than regular netTcpBinding?

I have noticed a strange situation. I am writing a paper for class about Service Bus relay component. I decided to test what impact does it have on performance (there is a "client <--> sb relay <--> service" instead of "client <--> service"…
0
votes
1 answer

Can I use the Windows Service bus with Federation, OAuth, or other directory?

I intend to use the NetTcpRelayBinding with Windows Service Bus, but I need the ability to add users from directories that I don't control. I've looked at the ServiceBus documentation for Windows Server, and I'm unsure if I can use shared access…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
0
votes
1 answer

How to compress WCF traffic hosted on ServiceBus using NetTcpRelay binding

We want to use GZip compression on our WCF 4.5 service. We are hosting the service on ServiceBus and are using the NetTcpRelayBinding. WCF 4.5 should support GZip compression OOB. I've extended the standard NetTcpRelayBinding and turned on GZip…
mrBob
  • 385
  • 6
  • 22
0
votes
1 answer

ConnectionStatusBehavior and RelayBinding

I am using relaybinding to create a ChannelListener. BasicHttpRelayBinding relayBinding = new BasicHttpRelayBinding(); relayBinding.BuildChannelListener(..., ...); Now I want to add ConnectionStatusBehavior so that I would know if…
0
votes
1 answer

How to read streams in parallel at client from a WCF Service Method, without blocking each other?

I'm trying to create a download application, in which there would be four or more download queues using which a user can download files from the server. What would be best possible solution to accomplish this without letting the queues blocking each…