Qt D-bus Error , How to use Qt D-Bus under windows ?
-
-
@Alex42 Have you tried this windows dbus port from freedesktop.org?
Never tried it. Might be better than that archived dbus code you found on google. -
Is there a reason why you want to use D-Bus on Windows?
-
@mchinand I let you take a look at my question in another topic,here
https://forum.qt.io/topic/131878/how-to-use-signals-slots-to-make-inter-process-communication-in-qt -
I agree with @artwaw. Check out the fortune example client and server.
-
@mchinand, As you see, the problem it's not in the TCP/IP ( local server / socket ,shared memory ,QProcess class, QT Network ) , the problem it's how to run d-bus daemon on the windows , ( or how to use Qt D-Bus under Windows )
-
@Alex42 said in Qt D-bus Error , How to use Qt D-Bus under windows ?:
the problem it's how to run d-bus daemon on the windows , ( or how to use Qt D-Bus under Windows )
This is outside of Qt. I suggest you also search on the Internet.
-
@Alex42 said in Qt D-bus Error , How to use Qt D-Bus under windows ?:
how to use Qt D-bus on windows ?
In your main.cpp, before any other Qt code, paste this:
int main(int argc, char *argv[]) { #ifdef Q_OS_WINDOWS // This variable comes from dbus-env.bat qputenv("DBUS_SESSION_BUS_ADDRESS", "autolaunch:"); #endif
If you also have all the DBus files, DLLs etc. in the same directory as your .exe, it will work.