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
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
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.