我在 Mac 上安装了 moinmoin 1.9.7,并添加了 CreatePdfDocument 操作。当使用一个非常基本的页面(仅包含字符串“此页面故意留空”)时,我能够调出 pdf 配置菜单
http://somehost:8080/Page?action=CreatePdfDocument
并且可以继续到服务器尝试生成 pdf 的位置 - 它重定向到:
http://localhost:8080/Page
然后提供以下html:
<html><body marginwidth="0" marginheight="0" style="background-color: rgb(38,38,38)"><embed width="100%" height="100%" name="plugin" src="http://somehost:8080/Page" type="application/pdf"></body></html>
moin-moin 服务器似乎挂在最后一个请求上,从不返回生成的 pdf。我在 CreatePdfDocument 操作源代码中添加了一些调试语句,我可以看到正在生成正确的 pdf。
有什么想法可能出了什么问题,或者我可以从哪里最好地开始调试这个问题?由于服务器在最后一个请求上挂起/没有响应,我无法弄清楚问题可能是什么。