How do I call a WCF method from c++ using Named pipes?

烈酒焚心 提交于 2019-12-03 12:01:14

Check if this works for you

  1. Try to open a named pipe. (CreateFile)
  2. Set the read mode and the blocking mode of the specified named pipe. (SetNamedPipeHandleState)
  3. Send a message to the pipe server and receive its response. (WriteFile, ReadFile)
  4. Close the pipe. (CloseHandle)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!