在 IIS 7.0 (Windows 7) 中为 Biztalk 2010 创建 HTTP 接收适配器时出错
我正在 IIS 7.0 中为 Biztalk 2010 创建 HTTP 接收适配器。 以下是使用的步骤;
- 在 Internet 信息服务 (IIS) 管理器窗口中, 在中心窗格的 IIS 部分中,双击 Handler Mappings 图标。
- 在右侧窗格中,单击“添加脚本映射”。在添加脚本映射中 对话框中,在请求路径框中输入 BTSHTTPReceive.dll。
- 点击 可执行文件框旁边的省略号 (...),然后浏览到 C:\Program Files (x86)\Microsoft BizTalk Server 2010\HttpReceive\BTSHTTPReceive.dll,然后单击“打开”。
- 在 在“名称”框中键入“BizTalk HTTP 接收适配器”,然后单击“确定”。在 新的 出现“添加脚本映射”对话框,单击“是”。
完成这些步骤后,我收到以下错误:
此处理程序所需的指定模块不在模块列表中。如果您要添加脚本映射处理程序,IsapiModule 或 CgiModule 必须位于模块列表中。
I am creating an HTTP Receive Adapter for Biztalk 2010 in IIS 7.0.
Below are the steps used ;
- In the Internet Information Services (IIS) Manager window, in the
center pane, in the IIS section, double-click the Handler Mappings
icon. - In the right pane, click Add Script Map. In the Add Script Map
dialog box, in the Request path box, enter BTSHTTPReceive.dll. - Click
the ellipsis (…) next to the Executable box, then browse to
C:\Program Files (x86)\Microsoft BizTalk Server
2010\HttpReceive\BTSHTTPReceive.dll, and then click Open. - In the
Name box type BizTalk HTTP Receive Adapter, and click OK. In the
new
Add Script Map dialog box that appears, click Yes.
After these steps I get the following error :
The specified module required by this handler is not in the modules list. If you are adding a script Map handler the IsapiModule or the CgiModule must be in the modules list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我注意到您唯一缺少的是以下步骤:
参考: http://msdn.microsoft.com/ en-us/library/aa559072(v=bts.70).aspx
另外,请确保 IsapiModule 已在“模块”页面上注册并启用。如果丢失,您可能尚未将 IIS 配置为使用 ISAPI。您可能需要在服务器管理器中检查 IIS 配置。
The only thing I noticed you missing was the following steps:
Reference: http://msdn.microsoft.com/en-us/library/aa559072(v=bts.70).aspx
Also, make sure that IsapiModule is registered and enabled on the Modules page. If it's missing, you may not have configured IIS to use ISAPI. You might want to check your IIS configuration in Server Manager.