How can I communicate with WCF from Delphi using Named Pipes Binding
问题 Can I use Delphi 2007 to communicate with a WCF service using the netnamedpipebinding ? If so, then how? 回答1: I suggest that you create a COM-visible proxy for your service using .NET (and WCF!), then consume it from Delphi as you would any COM object. There are several reasons why implementing a native client for a WCF service listening on a NetNamedPipesBinding endpoint is extremely complex. See http://blogs.charteris.com/blogs/chrisdi for more details. 回答2: Yes, you should be able to do