Search Results

0
votes

Determine wsHttpBinding at runtime with WCF

From your description, it sounds as if all servers are exposing the same service contract. If so, you could very well just declare multiple …
1
vote

Callback with NetTCPBinding

Look into using Duplex Messaging. NetTCPBinding supports it natively, un …
0
votes

WCF: How to get configuration from binding?

You wouldn't be able to do this with an actual binding, but it might be possible if you create a BindingElement instead (WSHttpBindingElement), put it into a configuration section and then serializ …
1
vote

How to store header info in a custom WCF HTTP binding

The WebHttp dispatcher looks at two things, from what I remember: The HttpRequestMessageProperty, which you should create and store in the Properties collection of the request message …
1
vote

WebServiceHost doesn’t invoke OnAcceptChannel of custom ChannelListener

Are you logging calls to the Async version of the ChannelListener methods? I seem to remember ServiceHost trying to call OnBeginAcceptChannel normally instead of OnAcceptChannel. Also, are …
2
votes

IMetaDataExchange MEX endpoint error when hosting WCF service in console app

The mex endpoint has the wrong attribute for the address... it should be address, not name. …
0
votes

Debugging Named Pipes in WCF

You could always just use Attach To Process instead of directly starting in the debugger and attach it to your host process. …
2
votes

Making a custom binding configurable over App.config

You're on the right track. The key point, however, is that the bindingExtension element should not point directly to your binding class itself. Instead, you need to have several class that …
0
votes

IDispatchOperationSelector question

You could try using adding an IDispatchMessageInspector implementa …
0
votes

WCF (WCF-Binding) in/with C/C++

Sounds like what you're looking for is a C++-based library for exposing and consuming web-services supporting the WS-* protocols (i.e. like WS-Security). In that case, you could probably give …