Я создаю канал в C ++, и когда я пытаюсь записать в этот канал, используя php-код, он выдает ошибку отказа в доступе, когда пытаюсь получить дескриптор этого канала.По сути, php-код вызывает другой exe-файл c ++, который пишет в канал, но не работает.Есть идеи ??
Код c ++
hPipe = CreateNamedPipe(
wcPipeName, // 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
1024, // output buffer size
1024, // input buffer size
NMPWAIT_USE_DEFAULT_WAIT, // client time-out
NULL);
Код клиента для написания звонков с php
hPipe = CreateFile(
lpszPipename, // pipe name
GENERIC_READ, // read and write access
0, // no sharing
NULL, // default security attributes
OPEN_EXISTING, // opens existing pipe
0, // default attributes
NULL); // no template file
if (hPipe == INVALID_HANDLE_VALUE)
{
printf("\nCreatePipe failed\n %d \n",GetLastError());
return FALSE;
}
//Sleep(1000);
// Write the reply to the pipe.
fSuccess = WriteFile(
hPipe, // handle to pipe
Buffer, // buffer to write from
BufferSize-1, // number of bytes to write
&cbWritten, // number of bytes written
NULL); // not overlapped I/O
FlushFileBuffers(hPipe);
CloseHandle(hPipe);