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

前端 未结 1 1335
忘了有多久
忘了有多久 2021-02-14 12:56

UPDATE: Looking through the protocol here, I can\'t figure out what goes into the Unsized Envelope Record. I can\'t find any examples online.

ORIGINAL:

I have t

1条回答
  •  清酒与你
    2021-02-14 13:34

    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)

    0 讨论(0)
提交回复
热议问题