我正在尝试使用 win32com 和 Microsoft Excel 在 IIS 上执行一些批处理操作。我想用 DCOM 打开一个 excel 文件,对其进行操作,然后将其保存为 pdf。以下代码在我的开发机器(64 位 windows 7)上运行良好。
# views.py
class ConvertFileView(View):
def get(self,request):
"""Convert the selected file"""
output = "c://docs/somefile.pdf"
input = "c://docs/input.xlsx"
#Open excel and open input.xlsx
excel = win32com.client.gencache.EnsureDispatch('Excel.Application')
excel.DisplayAlerts = False
excel.Visible = False
workbook = excel.Workbooks.Open(input)
# File manipulation here
workbook.ExportAsFixedFormat(Type=0,Filename=output)
excel.Quit()
del excel
return HttpResponse("Done")
但是,当我通过 IIS 加载网页时,出现以下错误。
com_error at /converter/convert/114/
(-2147024891, 'Access is denied.', None, None)
Traceback:
C:\GoogleDrive\websites\...\python\apps\converter\views.py in get
141. excel = win32com.client.gencache.EnsureDispatch('Excel.Application')
C:\python27\lib\site-packages\win32com\client\__init__.py in Dispatch
95. dispatch, userName = dynamic._GetGoodDispatchAndUserName(dispatch,userName,clsctx)
C:\python27\lib\site-packages\win32com\client\dynamic.py in _GetGoodDispatchAndUserName
114. return (_GetGoodDispatch(IDispatch, clsctx),
C:\python27\lib\site-packages\win32com\client\dynamic.py in _GetGoodDispatch
IDispatch = pythoncom.CoCreateInstance(IDispatch, None, clsctx, pythoncom.IID_IDispatch)
这在我的开发机器上运行良好。当我在 Windows Server 2008 上通过 IIS 加载网页时会发生此错误。我假设 python 没有足够的权限在 IIS 上启动 excel。无论如何我可以授予 python/DCOM 权限来运行 excel 吗?