0

尝试在 Windows 10 上安装 ESB 工具包 2.2 (BizTalk 2013 R2),BizTalk 已安装并配置,IIS 也已配置,但出现错误“系统找不到指定的文件”

不知道为什么,请帮忙。

4

1 回答 1

0

在 C:\Program Files (x86)\Microsoft BizTalk ESB Toolkit\Bin\ESBConfigurationTool.exe.config 中启用系统诊断

启用系统诊断

如果你能看到下面的错误。这就是造成它的原因。

Stack Trace:
   at System.DirectoryServices.AccountManagement.UnsafeNativeMethods.IADs.Get(String bstrName)
   at System.DirectoryServices.AccountManagement.CredentialValidator.BindSam(String target, String userName, String password)
   at System.DirectoryServices.AccountManagement.CredentialValidator.Validate(String userName, String password, ContextOptions connectionMethod)
   at System.DirectoryServices.AccountManagement.PrincipalContext.ValidateCredentials(String userName, String password, ContextOptions options)
   at EsbConfigurationTool.Panels.PanelBase.ValidateCredential(NetworkCredential credentials, String groupName)
   at EsbConfigurationTool.Panels.WebServicesException.Save()
   at EsbConfigurationTool.EsbConfiguration.OnTsBtnSaveClick(Object sender, EventArgs e)

此方法“ValidateCredentials”试图获取HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion Windows 10 中不可用的注册表项。您应该手动添加这些注册表字符串。

RegisteredOwner (string value)-> 您可以在 ESB 中使用服务帐户RegisteredOrganization (string value)

于 2016-06-06T07:04:03.787 回答