命名管道C#客户端无法连接到C ++服务器

时间:2017-05-02 14:51:21

标签: c# c++ windows ipc named-pipes

我正在尝试使用C ++应用程序让C#应用程序知道特定操作何时发生。我试图这样做的方法是通过命名管道。

我在C ++应用程序上设置了一个命名管道服务器,它似乎正在工作(命名管道被创建 - 它出现在PipeList检索的列表中)和C#上的命名管道客户端应用程序,它失败了:C#客户端代码的第一行给出“管道句柄尚未设置。您的PipeStream实现是否调用了InitializeHandle?”错误,第2行抛出“拒绝访问路径”异常。

我哪里错了?

C ++服务器代码

CString namedPipeName = "\\\\.\\pipe\\TitleChangePipe";

HANDLE pipe = CreateNamedPipe(namedPipeName, PIPE_ACCESS_INBOUND , PIPE_WAIT, 1, 1024, 1024, 120 * 1000, NULL);
if (pipe == INVALID_HANDLE_VALUE) {
    MessageBox(NULL, "Pipe Could Not be Established.", "Error: TCM", MB_ICONERROR);
    return -1;
}

char line[512]; DWORD numRead;

while (true)//just keep doing this
{
    numRead = 1;
    while ((numRead < 10 || numRead > 511) && numRead > 0)
    {
        if (!ReadFile(pipe, line, 512, &numRead, NULL) || numRead < 1) {//Blocking call
            CloseHandle(pipe);                                          //If something went wrong, reset pipe
            pipe = CreateNamedPipe(namedPipeName, PIPE_ACCESS_INBOUND , PIPE_WAIT, 1, 1024, 1024, 120 * 1000, NULL);
            ConnectNamedPipe(pipe, NULL);
            if (pipe == INVALID_HANDLE_VALUE) {
                MessageBox(NULL, "Pipe Could Not be Established.", "Error: TCM", MB_ICONERROR);
                return -1; }
            numRead = 1;
        }
    }
    line[numRead] = '\0';   //Terminate String
}   

CloseHandle(pipe);

C#客户端代码

var client = new NamedPipeClientStream(".", "TitleChangePipe", PipeDirection.InOut);
client.Connect();
var reader = new StreamReader(client);
var writer = new StreamWriter(client);

while (true)
{
    var input = Console.ReadLine();
    if (String.IsNullOrEmpty(input))
         break;
    writer.WriteLine(input);
    writer.Flush();
    Console.WriteLine(reader.ReadLine());
}

1 个答案:

答案 0 :(得分:3)

命名管道创建没有正确的参数。

首先你要阅读&amp;写在管道上,因此要使用的标志是:PIPE_ACCESS_DUPLEX

然后,在这里,您将以同步模式发送消息。使用这些标志:PIPE_WAIT | PIPE_TYPE_MESSAGE

最后,您在机器上只允许此管道的一个实例。显然,您需要至少2个:一个用于服务器,一个用于客户端。我只想使用无限旗:PIPE_UNLIMITED_INSTANCES

HANDLE pipe = CreateNamedPipe(namedPipeName, PIPE_ACCESS_DUPLEX, \
                              PIPE_WAIT | PIPE_TYPE_MESSAGE, PIPE_UNLIMITED_INSTANCES, \
                              1024, 1024, 120 * 1000, NULL);

在服务器中创建管道后,您应该在使用之前等待此管道上的连接:https://msdn.microsoft.com/en-us/library/windows/desktop/aa365146(v=vs.85).aspx