繁体   English   中英

命名管道客户端错误5(C ++)

[英]Named Pipes Client Error 5 (C++)

好了,下面我有命名管道服务器/客户端的代码。 我将服务器放置在Windows 8计算机上,它创建了一个管道,然后等待客户端连接。 然后,我在Windows 7上启动客户端,但它返回错误5(我认为访问被拒绝?)。有人可以向我解释为什么它给我错误5吗?

预先考虑所有答案

服务器代码

#include "stdafx.h"
#include "windows.h"
#include <iostream> 

using namespace std; 

#define g_szPipeName "\\\\.\\pipe\\pipename"  //Name given to the pipe


#define BUFFER_SIZE 1024 //1k
#define ACK_MESG_RECV "Message received successfully"
#define _CRT_SECURE_NO_WARNINGS 


HANDLE hPipe;

int repeate() {
    char szBuffer[BUFFER_SIZE];
    DWORD cbBytes;

    //We are connected to the client.
    //To communicate with the client we will use ReadFile()/WriteFile() 
    //on the pipe handle - hPipe

    //Read client message
    BOOL bResult = ReadFile(
        hPipe,                // handle to pipe 
        szBuffer,             // buffer to receive data 
        sizeof(szBuffer),     // size of buffer 
        &cbBytes,             // number of bytes read 
        NULL);                // not overlapped I/O 

    if ((!bResult) || (0 == cbBytes))
    {
        printf("\nError occurred while reading from the client: %d", GetLastError());
        CloseHandle(hPipe);
        system("Pause");
        return 1;  //Error
    }
    else
    {
        printf("\nReadFile() was successful.");
    }

    printf("\nClient sent the following message: %s", szBuffer);

    strcpy(szBuffer, ACK_MESG_RECV);

    //Reply to client
    bResult = WriteFile(
        hPipe,                // handle to pipe 
        szBuffer,             // buffer to write from 
        strlen(szBuffer) + 1,   // number of bytes to write, include the NULL 
        &cbBytes,             // number of bytes written 
        NULL);                // not overlapped I/O 

    if ((!bResult) || (strlen(szBuffer) + 1 != cbBytes))
    {
        printf("\nError occurred while writing to the client: %d", GetLastError());
        CloseHandle(hPipe);
        system("Pause");
        return 1;  //Error
    }
    else
    {
        printf("\nWriteFile() was successful.");
    }
    repeate();

}



int main(int argc, char* argv[])
{

    SECURITY_DESCRIPTOR sd;
    InitializeSecurityDescriptor(&sd, SECURITY_DESCRIPTOR_REVISION);

    SECURITY_ATTRIBUTES sa;
    sa.nLength = sizeof(SECURITY_ATTRIBUTES);
    sa.lpSecurityDescriptor = &sd;


    hPipe = CreateNamedPipe(
        g_szPipeName,             // pipe name 
        PIPE_ACCESS_DUPLEX,       // read/write access 
        PIPE_TYPE_MESSAGE |       // message type pipe 
        PIPE_READMODE_MESSAGE |   // message-read mode 
        PIPE_WAIT,                // blocking mode 
        PIPE_UNLIMITED_INSTANCES, // max. instances  
        BUFFER_SIZE,              // output buffer size 
        BUFFER_SIZE,              // input buffer size 
        NMPWAIT_USE_DEFAULT_WAIT,
        &sa);




        if (INVALID_HANDLE_VALUE == hPipe)
        {
            printf("\nError occurred while creating the pipe: %d", GetLastError());
            system("Pause");
            return 1;  //Error
        }
        else
        {
            printf("\nCreateNamedPipe() was successful.");
        }

        printf("\nWaiting for client connection...");

        //Wait for the client to connect
        BOOL bClientConnected = ConnectNamedPipe(hPipe, NULL);

        if (FALSE == bClientConnected)
        {
            printf("\nError occurred while connecting to the client: %d", GetLastError());
            CloseHandle(hPipe);
            system("Pause");
            return 1;  //Error
        }
        else
        {
            printf("\nConnectNamedPipe() was successful.");
        }


        repeate();

    }

客户代码

#include "stdafx.h" 
#include "windows.h"
#include <iostream>

#define g_szPipeName "\\\\MyComputerName\\pipe\\pipename"  //Name given to the pipe 


#define BUFFER_SIZE 1024 //1k
#define ACK_MESG_RECV "Message received successfully"

HANDLE hPipe;

int repeate() {
    char szBuffer[BUFFER_SIZE];

    printf("\nEnter a message to be sent to the server: ");
    gets(szBuffer);

    DWORD cbBytes;

    //Send the message to server
    BOOL bResult = WriteFile(
        hPipe,                // handle to pipe 
        szBuffer,             // buffer to write from 
        strlen(szBuffer) + 1,   // number of bytes to write, include the NULL
        &cbBytes,             // number of bytes written 
        NULL);                // not overlapped I/O 

    if ((!bResult) || (strlen(szBuffer) + 1 != cbBytes))
    {
        printf("\nError occurred while writing to the server: %d", GetLastError());
        CloseHandle(hPipe);
        system("Pause");
        return 1;  //Error
    }
    else
    {
        printf("\nWriteFile() was successful.");
    }

    //Read server response
    bResult = ReadFile(
        hPipe,                // handle to pipe 
        szBuffer,             // buffer to receive data 
        sizeof(szBuffer),     // size of buffer 
        &cbBytes,             // number of bytes read 
        NULL);                // not overlapped I/O 

    if ((!bResult) || (0 == cbBytes))
    {
        printf("\nError occurred while reading from the server: %d", GetLastError());
        CloseHandle(hPipe);
        system("Pause");
        return 1;  //Error
    }
    else
    {
        printf("\nReadFile() was successful.");
    }

    printf("\nServer sent the following message: %s", szBuffer);
    repeate();

}

int main(int argc, char* argv[])
{


     //Connect to the server pipe using CreateFile()
     hPipe = CreateFile( 
          g_szPipeName,   // pipe name 
          GENERIC_READ |  // read and write access 
          GENERIC_WRITE, 
          0,              // no sharing 
          NULL,           // default security attributes
          OPEN_EXISTING,  // opens existing pipe 
          0,              // default attributes 
          NULL);          // no template file 

     if (INVALID_HANDLE_VALUE == hPipe) 
     {
          printf("\nError occurred while connecting to the server: %d", GetLastError()); 
          //One might want to check whether the server pipe is busy
          //This sample will error out if the server pipe is busy
          //Read on ERROR_PIPE_BUSY and WaitNamedPipe() for that
          system("Pause");
          return 1;  //Error
     }
     else
     {
          printf("\nCreateFile() was successful.");
     }

     //We are done connecting to the server pipe, 
     //we can start communicating with the server using ReadFile()/WriteFile() 
     //on handle - hPipe


     repeate(); 
}

通过添加IP地址,子网掩码,默认网关来配置两台计算机。 从网络和共享中心,打开所有共享,然后关闭密码保护的共享。 通过从cmd ping IP地址对其进行测试。 两台计算机的用户帐户均不应使用密码保护。 这就是为什么我修复了Client Error 5并在两台远程计算机之间建立命名管道通信的原因

客户端应使用OpenFile(),而不是CreateFile()。 客户端不想创建任何新东西,它想与现有管道通信。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM