Skip to Content
Programming WCF Services, 3rd Edition
book

Programming WCF Services, 3rd Edition

by Juval Lowy
August 2010
Intermediate to advanced
908 pages
26h 22m
English
O'Reilly Media, Inc.
Content preview from Programming WCF Services, 3rd Edition

The Service Bus Bindings

The service bus offers multiple bindings for relaying messages, yet the three main bindings this chapter focuses on are the NetTcpRelayBinding, NetOnewayRelayBinding, and NetEventRelayBinding. A fourth binding, the WS2007HttpRelayBinding, is available as well, yet the likelihood of using it is low, as it is reserved for the case of interoperable messages to the service bus and it is inferior in performance to the NetTcpRelayBinding (which can also use HTTP ports).

The TCP Relay Binding

The TCP relay binding is the binding of choice in the majority of cases involving relayed Internet connectivity. It yields the best performance and throughput while minimizing the overhead for both the service and the relay service. It supports request-reply operations, one-way operations, and even duplex callbacks, all through the relay service. For scheme, the TCP relay always uses sb:

<endpoint
   address  = "sb://MyNamespace.servicebus.windows.net/..."
   binding  = "netTcpRelayBinding"
   contract = "..."
/>

The TCP relay binding offers unlimited message size (up to the configured message size, as with the regular TCP binding). The TCP relay binding always maintains a transport session, so with a session-full service, calls made on the same proxy channel always end up reaching the same service instance. However, because this binding uses the TCP binary encoding, it is not interoperable—it assumes the other side is also using the TCP relay binding.

Adding default endpoints

You cannot rely ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Programming WCF Services, 4th Edition

Programming WCF Services, 4th Edition

Juval Lowy, Michael Montgomery
Programming .NET Security

Programming .NET Security

Adam Freeman, Allen Jones

Publisher Resources

ISBN: 9781449382476Supplemental ContentErrata Page