10

更新:查看此处的协议,我无法弄清楚 Unsized Envelope Record 中的内容。我在网上找不到任何例子。

原来的:

我有以下 WCF 服务

    static void Main(string[] args)
    {
        var inst = new PlusFiver();
        using (ServiceHost host = new ServiceHost(inst,
            new Uri[] { new Uri("net.pipe://localhost") }))
        {
            host.AddServiceEndpoint(typeof(IPlusFive), new NetNamedPipeBinding(NetNamedPipeSecurityMode.None), "PipePlusFive");
            host.Open();
            Console.WriteLine("Service is Available. Press enter to exit.");
            Console.ReadLine();
            host.Close();
        }
    }

   [ServiceContract]
   public interface IPlusFive
   {
       [OperationContract]
       int PlusFive(int value);
   }


   [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
   public class PlusFiver : IPlusFive
   {
      public int PlusFive(int value)
      {
          Console.WriteLine("Adding 5 to " + value);
          return value + 5;
      }      
   }

我输出了添加 5 行,所以我知道服务器是否处理了请求。

我有一个用于测试它的 .NET 客户端,并且一切都按预期工作。

现在我想为此制作一个非托管 C++ 客户端。

我想出了如何获取管道的名称并写入它。
我已经从这里下载了协议

我可以写到管道,但我不能读到它。每当我尝试从中读取时,都会出现ERROR_BROKEN_PIPE 109 (0x6D) The pipe has been ended.错误。如果我将读取替换为写入,则写入成功,因此我认为管道不会关闭,至少在我尝试读取之前不会。

这是我连接到管道的方式。

HANDLE OpenPipe(OLECHAR* bstrGuid)
{
    wstring pipeName = L"\\\\.\\pipe\\";
    wstring strGuid = bstrGuid;
    pipeName.append(strGuid.substr(1,36));
    wcout << "Pipe Name " << endl;
    wcout << pipeName.c_str() << endl;

    HANDLE hPipe = CreateFile(pipeName.c_str(), GENERIC_WRITE | GENERIC_READ, FILE_SHARE_WRITE | FILE_SHARE_READ, NULL, OPEN_EXISTING, NULL, NULL);
    if(hPipe == INVALID_HANDLE_VALUE)
    {
        wcout << "failed to create pipe" << endl;
        system("pause");
        return NULL;
    }
    return hPipe;
}

这就是我创建发送的第一条消息的方式

std::list<wchar_t> GetFirstMessage()
{
    std::list<wchar_t> message;
    message.push_back(0x00);// version record
    message.push_back(0x01);// major version
    message.push_back(0x00);// minor version
    message.push_back(0x01);// mode record
    message.push_back(0x01);// singleton-unsized mode
    message.push_back(0x02);// via record

    wstring url = L"net.pipe://localhost/PipePlusFive";
    message.push_back(url.length());// via length
    for(int x= 0;x<url.length();x++)
    {
        message.push_back(url[x]); // via
    }
    message.push_back(0x03);
    message.push_back(0x08);
    return message;
}

这就是我将其写入文件的方式。

int WriteMessage(HANDLE hPipe, LPVOID message, int size)
{
    DWORD bytesWritten;

    BOOL bWrite = WriteFile(hPipe, &message, size, &bytesWritten, NULL);
    wcout << "Bytes Written: " << bytesWritten << endl;
    if(bWrite == false)
    {
        wcout << "fail"<<endl;
        CloseHandle(hPipe);
        system("pause");
        return 1;
    }
    return 0;
}

    list<wchar_t> full_message = GetFirstMessage();
int result = WriteMessage(hPipe, &full_message, full_message.size());   
if (result == 1)
{ return 1;}

这是我写结束信息的方式

    wchar_t message = 12;
result = WriteMessage(hPipe, &message, 1);
if (result == 1)
{ return 1;}

这是我试图阅读回复的方式

    char buffer[10];
DWORD bytesRead;
BOOL bRead = ReadFile(hPipe, buffer, 1, &bytesRead, NULL);
if(bRead == false)
{
    wcout << "fail read"<<endl;
    wcout << "error: " << GetLastError() << endl;
    CloseHandle(hPipe);
    system("pause");
    return 1;
}

我是 C++ 新手,所以我不知道我是否没有正确遵循协议或在尝试这样做时犯了一个愚蠢的错误?

更新:问题是我正在将指针地址写入命名管道而不是列表的内容。我已经解决了这个问题,我现在可以阅读序言确认记录。现在我必须弄清楚协议的下一部分需要发送什么。

4

1 回答 1

0

检查这是否适合您

  1. 尝试打开命名管道。(创建文件)
  2. 设置指定命名管道的读取模式和阻塞模式。(SetNamedPipeHandleState)
  3. 向管道服务器发送消息并接收其响应。(写文件,读文件)
  4. 关闭管道。(关闭手柄)
于 2016-04-09T02:10:50.147 回答