Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.0
-
None
Description
I tested using https://doc.qt.io/qt-6/qtremoteobjects-simpleswitch-example.html
with little modification of URL.
I run the server at a boot2qt device and client on a Windows host.
server IP is 10.9.98.139
// if config using the same IP as below, QtRO works QRemoteObjectHost srcNode(QUrl(QStringLiteral("tcp://10.9.98.139:1234"))); QRemoteObjectNode repNode(QUrl(QStringLiteral("tcp://10.9.98.139:1234"))); // if host listen to localhost then client cannot connect to host QRemoteObjectHost srcNode(QUrl(QStringLiteral("tcp://127.0.0.1:1234"))); QRemoteObjectNode repNode(QUrl(QStringLiteral("tcp://10.9.98.139:1234")));