Qt documentation offers several ways of inter-process communication (IPC), including using TCP/IP Qt Network with QNetworkAccessManager, QTcpSocket, QTcpServer classes.But I can't find an example with an IPC without some external network. All urls, used in examples, are real www network sites.
But how to use REST IPC on a local machine?
I want to make two processes communicate using simple rest commands like PUT, GET, POST. Is it possible to do it locally? Any examples without external urls?I managed to communicate processes via QLocalServer/QLocalSocket, but there is no REST there.