如何在 InstallShield 2009 安装的网站上设置 HTTP 自定义错误消息?
它看起来确实很简单。有一个 Internet 信息服务视图,我们可以在其中创建网站或虚拟目录对象,这些对象的选项卡之一看起来可以让我们设置自定义 HTTP 错误消息。
它甚至可以重置 1 或 2 个错误消息,但是当我尝试重置所有 HTTP 错误消息时,它确实失败了。
具体来说,这是我的 InstallShield 项目中的 ISIISCommon 表(XML 文件格式):
<table name="ISIISCommon">
<col key="yes" def="s72">ISIISCommon</col>
<col def="S72">ISIISCommon_Parent</col>
<col def="L255">DisplayName</col>
<col def="s50">RootDir</col>
<col def="i4">Attributes</col>
<col def="L255">DefDoc</col>
<col def="I4">SessionTimeout</col>
<col def="I4">ScriptTimeout</col>
<col def="S255">AnonyUserName</col>
<col def="S255">AnonyPasswrd</col>
<col def="S0">CustomErrors</col>
<col def="L255">AppName</col>
<col def="S72">SSLCert</col>
<col def="L72">AppPool_</col>
<col def="S255">Aspversion</col>
<col def="S255">SslPassword</col>
<col def="S255">HostHeaderName</col>
<row><td>ISIISCommonVRoot</td><td>ISIISCommonWebsite1</td><td>##ID_STRING121##</td><td>WEB</td><td>25873</td><td>Index.html</td><td>20</td><td>90</td><td/><td/><td>400,*,URL,CustomError.html;401,1,URL,CustomError.html;401,2,URL,CustomError.html;401,3,URL,CustomError.html;401,4,URL,CustomError.html;401,5,URL,CustomError.html;403,1,URL,CustomError.html;403,10,URL,CustomError.html;403,11,URL,CustomError.html;403,12,URL,CustomError.html;403,13,URL,CustomError.html;403,14,URL,CustomError.html;403,15,URL,CustomError.html;403,16,URL,CustomError.html;403,17,URL,CustomError.html;403,2,URL,CustomError.html;403,3,URL,CustomError.html;403,4,URL,CustomError.html;403,5,URL,CustomError.html;403,6,URL,CustomError.html;403,7,URL,CustomError.html;403,8,URL,CustomError.html;403,9,URL,CustomError.html;404,*,URL,CustomError.html;405,*,URL,CustomError.html;406,*,URL,CustomError.html;407,*,URL,CustomError.html;412,*,URL,CustomError.html;414,*,URL,CustomError.html;500,*,URL,CustomError.html;500,100,URL,CustomError.html;500,12,URL,CustomError.html;500,13,URL,CustomError.html;500,15,URL,CustomError.html;501,*,URL,CustomError.html;502,*,URL,CustomError.html</td><td>##ID_STRING127##</td><td/><td>##ID_STRING31##</td><td/><td/><td/></row>
</table>
您可能会注意到,我尝试将虚拟目录上的所有 HTTP 错误设置为重定向到 CustomError.html 页面。另请注意,我认为将此信息存储在 TD 元素中,而不是在其自己的 TABLE 中,是错误的,尤其是在 InstallShield/Windows Installer 世界中。
这在各个层面上都行不通。
首先,这是安装日志,
MSI (s) (60:14) [12:28:49:025]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI72A0.tmp, Entrypoint: CreateIISVRoots
InstallShield 12:28:49: User legacy object preference is the following: 1 . This is based on the value of the following property: IISPREFERLEGACYOBJECTS
InstallShield 12:28:49: InitIISObject
InstallShield 12:28:49: CreateAppPoolFunction
InstallShield 12:28:49: OpenKeyLog, pszMDPath =/LM
InstallShield 12:28:49: AddKey, pszMDPath = /W3SVC/AppPools/MyAppPool
InstallShield 12:28:49: OpenKeyLog, pszMDPath =/LM/W3SVC/AppPools/MyAppPool
InstallShield 12:28:49: getvaluelog
InstallShield 12:28:49: SetVRtStrProperty for property '1002' with value 'IIsApplicationPool' and strSubPath '/'.
[zip]
InstallShield 12:28:49: SetVRtStrProperty for property '6006' with value 'Index.html' and strSubPath '/'.
InstallShield 12:28:49: SetData, pszMDPath = /
InstallShield 12:28:49: SetVRtDelimMultiszProperty for property '6008' with value '400,*,URL,CustomError.html;401,1,URL,CustomError.html;401,2,URL,CustomError.html;401,3,URL,CustomError.html;401,4,URL,CustomError.html;401,5,URL,CustomError.html;403,1,URL,CustomError.html;403,10,URL,CustomError.html;403,11,URL,CustomError.html;403,12,URL,Cus'.
**InstallShield 12:28:49: SetVRtMultiszProperty for property '6008' and value '400,*,URL,CustomError.html' with length '522'**.
从外观上看,它不喜欢使用 522 个字符来描述自定义错误。在 IIS 中,仅使用了前 259 个字符,因此只有少数自定义错误被正确设置,最后一个错误严重错误(生成的 403.12 的自定义错误 URL 为“cus”)。
有没有办法解决这个限制?