0

我遇到了 WSGI 3.3 和 Qt4 应用程序的问题。似乎 QGraphicsScene 的项目无法调用 childItem() 方法。以下测试脚本在从命令行调用时运行良好,但在作为 WSGI 应用程序调用时永远不会完成。我注意到使用 WSGI v3.3 时会出现此问题,但较旧的 (2.8) 版本不会出现此问题。

childItems() 方法似乎挂起,应用程序变得无响应。

关于可能发生什么的任何线索?

from PyQt4.QtGui  import *

import sys
# Show print msgs in apache logs
sys.stdout = sys.stderr

import os
# Allows apache to use DISPLAY. The command "xhost +" could be temporarily required to start Qt applications from the web server
os.environ["DISPLAY"]=":0.0"

QApp = None
def application(environ, start_response):
    global QApp
    status = '200 OK'
    output = 'Hello World!'
    response_headers = [('Content-type', 'text/plain'),
                        ('Content-Length', str(len(output)))]
    start_response(status, response_headers)

    qt_test()

    return [output]

def qt_test():
    QApp = QApplication(["TEST"])
    scene = QGraphicsScene()
    obj = QGraphicsRectItem()
    scene.addItem(obj)
    print "EMPTY LIST", obj.childItems()
    obj2 = QGraphicsRectItem()
    obj2.setParentItem(obj)
    print "CHILDREN", obj.childItems()
    print "FINISH"
    return 

if __name__ == "__main__":
    qt_test()

环境(工作):python 2.6.4、apache 2.2.14、mod-wsgi 2.8、qt 4.6.2、python-qt 4.7.2

环境(问题):python 2.6.6、2.2.16、mod-wsgi 3.3、qt 4.6.3、python-qt 4.7.3

4

1 回答 1

1

mod_wsgi 小组的人指出了这个问题:

您是否设置:

WSGIApplicationGroup %{GLOBAL}

在 Apache 配置中。

于 2011-10-26T08:31:38.880 回答