0

I have a wcf namedpipe host ,it works well by .net client wcf proxy. Now, need to support communication with qt client.

I cannot get the real name of the wcf namedpipe,it`s random guid.

Thanks

wangcl
  • 7
  • 2

1 Answers1

0

As its name implies, NetNamedPipeBinding is intended only for use by .Net clients (similar to NetTCP binding). .Net is more than capable of communicating over named pipes using the basic IO library outside of WCF, which is the recommended choice if you will be mixing in non-.Net clients.

The other other Alan
  • 1,868
  • 12
  • 21
  • Inter-process communication across language,which is the best way,namedpipe or socket? – wangcl Sep 04 '14 at 02:51
  • I'm no expert but: http://technet.microsoft.com/en-us/library/aa178138(v=sql.80).aspx http://stackoverflow.com/questions/1235958/ipc-performance-named-pipe-vs-socket – The other other Alan Sep 04 '14 at 13:27