How to access WCF Service from win32 Application
-
One way would be to use named pipes. WCF supports NetNamedPipeBinding as a transport. Here's an example of setting it up in WCF:
<service name="MyService"
behaviorConfiguration="MyServiceBehavior">
<endpoint binding="netNamedPipeBinding"
bindingConfiguration="Binding1" contract="IMyService" />
<endpoint address="mex" binding="mexNamedPipeBinding"
contract="IMetadataExchange" />
</service>Deja View - the feeling that you've seen this post before.
-
One way would be to use named pipes. WCF supports NetNamedPipeBinding as a transport. Here's an example of setting it up in WCF:
<service name="MyService"
behaviorConfiguration="MyServiceBehavior">
<endpoint binding="netNamedPipeBinding"
bindingConfiguration="Binding1" contract="IMyService" />
<endpoint address="mex" binding="mexNamedPipeBinding"
contract="IMetadataExchange" />
</service>Deja View - the feeling that you've seen this post before.