我有一个使用COM对象的Python程序,我想远程运行。该程序在本地计算机上运行良好,但是当我在远程计算机上运行程序并尝试使用DCOM对象远程连接到远程计算机上的COM对象时,NTLM身份验证失败(在Wireshark捕获中看到)。
该计算机位于Windows域中,但我可以在两台计算机上创建尽可能多的本地用户。我尝试在两台机器上创建相同的本地用户,但DCOM对象将机器作为域传递(即尝试使用Machine2
向Machine1\user
进行身份验证。)
有什么建议吗?
pythoncom
或win32com
是否有办法指定用于NTLM身份验证的其他用户和密码?
我非常愿意回答任何问题,并尽可能多地添加细节。
代码:
print "\nConnecting to '%s'" % LAHostNameOrIP ;
try:
LAConnect = win32com.client.Dispatch("AgtLA.Connect")
# Fails on the LAConnect.GetInstrument call
LAInst = LAConnect.GetInstrument(LAHostNameOrIP)
except pythoncom.com_error, (hr, msg, exc, arg):
print "The AgtLA call failed with code: %d: %s" % (hr, msg)
if exc is None:
print "There is no extended error information"
else:
wcode, source, text, helpFile, helpId, scode = exc
print "The source of the error is", source
print "The error message is", text
print "More info can be found in %s (id=%d)" % (helpFile, helpId)
sys.exit(1)