Tagged Questions
The qlocalsocket tag has no wiki summary.
3
votes
2answers
714 views
Qt4.5: Using event-loop based localsocket before app.exec
I'm facing a practical problem with Qt. I'm using a class that communicates with QLocalSocket to another process (pipes/unix sockets) and I need to do that communication before other events occur, ...
1
vote
2answers
131 views
How to emit error for QLocalSocket
I am implementing 'Local fortune server' example (from Qt 4.7.3) as a service on Windows.
What i want is that when someone paused the service, the local server should notify the error to the connected ...
1
vote
2answers
130 views
Trouble binding to a socket from a PHP script
I'm very new to PHP so this might be something simple. Anyway, I'm trying to create 2-way communication between a PHP script (activated by a web client) and a local process (written in C++). The PHP ...
1
vote
0answers
554 views
QLocalServer with multiple clients — proper handling
I'm trying to make IPC work between one server to accept requests from multiple clients with Qt 4.6. All is working, except that the underlying named pipes are not being closed, making Qt to emit the ...
0
votes
1answer
242 views
Passing a QLocalSocket* to a method expecting a QIODevice*
Perhaps I'm being over-ambitious, but I'm trying to write a server program which can accept connections over both QLocalSockets and QTcpSockets. The concept is to have a 'nexus' object with both a ...
0
votes
0answers
778 views
Persistent Qt Local Socket IPC
I'm developing an application that uses IPC between a local server and a client application. There is nothing particular to it, as it's structured like the Qt documentation and examples.
The problem ...