I have an issue with CreateWindow() in a QT application when creating the QEventDispatcherWin32 window. Let's call this app "QWorker". Qworker has the following properties:
- It is a windows application to have a message loop and windows events but doesn't have any visible windows.
- Multiple instances of the app can be run (it isn't a singleton)
- is invoked from a window service. To be more specific, the parent process is a windows service running as the local system account with "interact with desktop" disabled.
What seems to happen is that when multiple QWorker processes are created I get the error:
QEventDispatcher: Failed to create QEventDispatcherWin32 internal window: 1407
In the QT code (qeventdispatcher_win.cpp) this translates into the following code in
QString className = QLatin1String("QEventDispatcherWin32_Internal_Widget") + QString::number(quintptr(qt_internal_proc));
...
RegisterClass(&wc)
HWND wnd = CreateWindow(..)
if(!wnd) { crap out }
What happens is that CreateWIndow() fails and getLastError() returns 1407 (class not registered). Clearly QT attempted to register the class and didn't anticipate this call ever failing. I have yet to tear apart the QT code to add instrumentation to see if there is a specific error coming from RegisterClass.
QWorker runs fine when multiple instances are invoked from the desktop. QWorker also works fine if invoked as the LSA using Psexec. I also am not sure if the error occurs all the time or only when multiple instances of QWorker are executed simultaneously - e.g there may be a race condition here that is causing problems.
Does anyone see anything wrong with the QT code? Are there restrictions on windows classes when running as a service?
Thanks for any feedback.