gpt4 book ai didi

python - Win32com 代码无法在 IIS 上运行

转载 作者:太空宇宙 更新时间:2023-11-03 17:58:10 24 4
gpt4 key购买 nike

我试图在 IIS Web 服务器上部署 Python 应用程序,只要遇到使用 win32com 对象的代码,它就会抛出错误,但代码在 Python 内置 Web 服务器上运行良好这是代码:

xlapp = win32com.client.Dispatch(r"Excel.Application")

这是错误:

xlapp undefined, global win32com = <module 'win32com' from 'C:\Python27\lib\site-packages\win32com\__init__.pyc'>, win32com.client = <module 'win32com.client' from 'C:\Python27\lib\site-packages\win32com\client\__init__.pyc'>, win32com.client.Dispatch = <function Dispatch> 
C:\Python27\lib\site-packages\win32com\client\__init__.py in Dispatch(dispatch='Excel.Application', userName=None, resultCLSID=None, typeinfo=None, UnicodeToString=None, clsctx=21)
93 """

94 assert UnicodeToString is None, "this is deprecated and will go away"

=> 95 dispatch, userName = dynamic._GetGoodDispatchAndUserName(dispatch,userName,clsctx)

96 return __WrapDispatch(dispatch, userName, resultCLSID, typeinfo, clsctx=clsctx)

97

dispatch = 'Excel.Application', userName = None, global dynamic = <module 'win32com.client.dynamic' from 'C:\Python27\lib\site-packages\win32com\client\dynamic.pyc'>, dynamic._GetGoodDispatchAndUserName = <function _GetGoodDispatchAndUserName>, clsctx = 21
C:\Python27\lib\site-packages\win32com\client\dynamic.py in _GetGoodDispatchAndUserName(IDispatch='Excel.Application', userName='Excel.Application', clsctx=21)
113 else:

114 userName = str(userName)

=> 115 return (_GetGoodDispatch(IDispatch, clsctx), userName)

116

117 def _GetDescInvokeType(entry, default_invoke_type):

global _GetGoodDispatch = <function _GetGoodDispatch>, IDispatch = 'Excel.Application', clsctx = 21, userName = 'Excel.Application'
C:\Python27\lib\site-packages\win32com\client\dynamic.py in _GetGoodDispatch(IDispatch='Excel.Application', clsctx=21)
90 IDispatch = pythoncom.connect(IDispatch)

91 except pythoncom.ole_error:

=> 92 IDispatch = pythoncom.CoCreateInstance(IDispatch, None, clsctx, pythoncom.IID_IDispatch)

93 else:

94 # may already be a wrapped class.

IDispatch = 'Excel.Application', global pythoncom = <module 'pythoncom' from 'C:\windows\system32\pythoncom27.dll'>, pythoncom.CoCreateInstance = <built-in function CoCreateInstance>, builtin None = None, clsctx = 21, pythoncom.IID_IDispatch = IID('{00020400-0000-0000-C000-000000000046}')

<class 'pywintypes.com_error'>:(-2147024891, 'Access is denied.', None, None)
argerror = None
args = (-2147024891, 'Access is denied.', None, None)
excepinfo = None
hresult = -2147024891
message = ''
strerror = 'Access is denied.'

最佳答案

线索在错误消息中:

<class 'pywintypes.com_error'>:(-2147024891, 'Access is denied.', None, None)
argerror = None
args = (-2147024891, 'Access is denied.', None, None)
excepinfo = None
hresult = -2147024891
message = ''
strerror = 'Access is denied.'

您的 python 应用程序运行所使用的身份似乎没有启动 Excel 实例的权限。

更新:

Excel 将作为进程外 COM 服务器启动。要允许您的网站有权启动 Excel 并实例化作为工作簿的对象,您需要使用名为 dcomcnfg.exe 的工具配置 Excel 的启动和激活权限。

您可以从“开始”->“运行”或从命令行启动dcomcnfg.exe。您还需要是本地计算机管理员。

启动后,展开组件服务节点及其子节点,如下面的屏幕截图所示:

enter image description here

向下滚动 DCOM Config 节点的子级,直到找到名为 Microsoft Excel Application 的条目:

enter image description here

右键单击此条目并选择“属性”,将打开一个选项卡式对话框。选择“安全”选项卡,然后选择“启动和激活权限自定义”单选按钮,然后单击“编辑”按钮,如下所示:

enter image description here

当您单击编辑按钮时,将打开另一个对话框,在此窗口中您可以添加网站运行的身份:

enter image description here

通常该网站将在所谓的 Application Pool Identity 下运行。它通常与站点的应用程序池同名(除非您更改了该名称)。

您需要向池身份授予启动和激活权限。通过单击添加按钮来执行此操作,该按钮显示:

enter image description here

在文本框中输入前缀为 IIS AppPool\ 的池标识(空格和反斜杠很重要:

    IIS AppPool\[Your Application Pool Identity]

例如:

    IIS AppPool\DefaultAppPool

enter image description here

单击“确定”,您将看到您的应用程序池身份已添加到用户列表中。然后确保选中本地启动本地激活允许复选框,如下所示:

enter image description here

完成后,单击确定,然后再次单击确定

希望现在您应该能够让您的 Python 应用程序启动 Excel。

我应该警告您,Excel(和其他 Office 套件应用程序)并非设计(或许可)用于 Web 应用程序。最终可能会出现数百个孤立的 Excel(或 Word)进程,这将成为全面管理/资源占用的噩梦。

关于python - Win32com 代码无法在 IIS 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28195793/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com