我使用Cassia来获取两台服务器的会话。 - Windows 2003 R2终端服务器 - Windows 2008 R2服务器
第二个,它不是终端服务器工作正常。然而,第一个是遇到一些问题。 错误消息是:
DO UNTIL
任何人都可以帮助解决此错误消息以及该怎么做?
我目前为测试目的找到的代码:
System.ComponentModel.Win32Exception: No more data is available
at Cassia.Impl.NativeMethodsHelper.GetSessionInfos(ITerminalServerHandle server)
at Cassia.Impl.TerminalServer.GetSessions()
at Server_Sessions.Program.Main(String[] args)
答案 0 :(得分:1)
尝试了几件事之后我发现了自己的错误。代码经过测试和运行。我需要使用模拟,因为我的用户帐户在服务器上不起作用。因此,我冒充该服务器上的标准用户,您将获得相关信息。
def clean(url):
return {'url': url, 'title': g.extract(url).title}
from multiprocessing import Pool
pool = Pool()
website_info = pool.map(clean, clean_url_data)