3

我正在努力使用 wix 3.6.3303.1/4.0.12.0 将基于 com 的 isapi dll 全局安装到 iis 7.5 中。

我有以下 wix 配置(此处为完整配置):

<Fragment>
  <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
    <Component Id="IsapiDll" Guid="ADD-GUID-HERE">
      <File Id="isapidll" Name="isapi.dll" Source="isapi.dll" />
    </Component>
    <Component Id="IisFilter" Guid="ADD-GUID-HERE">
      <CreateFolder />
      <iis:WebFilter Id="IisFilter" Name="MyIsapi" Path="[INSTALLFOLDER]isapi.dll" LoadOrder="last" Description="MyIsapi" />
    </Component>
  </ComponentGroup>
</Fragment>

在带有 IIS7.5 的 Windows 7 32 位上运行时,我的 msi 日志中收到以下错误:

WriteIIS7ConfigChanges:  Error 0x8007000e: Failed while finding IAppHostElement filter/@name=(null)
WriteIIS7ConfigChanges:  Error 0x8007000e: Failed to delete filter
WriteIIS7ConfigChanges:  Error 0x8000ffff: Unexpected IIS Config action specified for global filter
WriteIIS7ConfigChanges:  Error 0x8000ffff: Failed to configure IIS filter global.
WriteIIS7ConfigChanges:  Error 0x8000ffff: WriteIIS7ConfigChanges Failed.

我担心这个问题是wix本身的一个错误。 CreateGlobalFilter()在被赋值之前将 pwzFilterName 传递给 DeleteCollectionElement()。这稍后会导致Iis7FindAppHostElementString()被调用,并带有一个空 wzAttributeValue 值,这似乎是错误的原因。

我当然可以进行疯狂的追逐,并很高兴被指向正确的方向......

更新:我现在玩过网站级别的安装,并且可以通过添加 WebSite 属性和元素来实现。在这里配置

编辑:将路径属性更改为正确的格式。

4

2 回答 2

2

0x8007000e表示内存不足,(null)消息中的 让我打赌这是自定义操作中的错误。如果您可以调试它,那是理想的。无论如何,在http://wixtoolset.org/bugs输入一个错误可能是一个好主意。

于 2013-01-07T17:43:41.033 回答
0

您忘记添加 WebSite 属性,此代码在 WIX3.7 中对我很有效:

<Component Id="IsapiFilterComponent" Guid="AE102719-D7DE-450A-A44C-29E7D9A36C0D" KeyPath="yes">
  <iis:WebFilter Id="MyWebDavFilter" Name="MyWebDavFilter" Path="[INSTALLFOLDER]MyWebDavFilter.dll" LoadOrder="last" Description="My Web Dav Filter" WebSite="DefaultWebSite" />
</Component>

但是这个

<Component Id="IsapiFilterComponent" Guid="AE102719-D7DE-450A-A44C-29E7D9A36C0D" KeyPath="yes">
  <iis:WebFilter Id="MyWebDavFilter" Name="MyWebDavFilter" Path="INSTALLFOLDER]MyWebDavFilter.dll" LoadOrder="last" Description="My Web Dav Filter"/>
</Component>

给出与您相同的错误。

当然,您必须将<iis:WebSite>元素添加到您的 wxs 文件中。

于 2013-02-15T08:41:19.253 回答