Hi,

I am using qlocalsocket to establish connection with another program on the same machine. The server has been wrote in c and it works fine.
The client has been wrote in qt. (using qlocalsocket.)
This is my simple example:
LocalSocket socket;
socket.connectToServer(“mySocket”);
socket.open(QIODevice::ReadWrite);
But I got erro like this: No such file or directory.
I checked whether mySocket is created by server or not. It did.
What could be the problem?
Thanks, David