我想在发布时将以下内容添加到Web配置中:
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Strict-Transport-Security" value="max-age=16070400; includeSubDomains" xdt:Transform="Insert" />
</customHeaders>
</httpProtocol>
</system.webServer>
默认网络配置中没有任何自定义标头,因此我在发布时遇到错误:No element in the source document matches '/configuration/system.webServer/httpProtocol/customHeaders'
。
我可以修复它,我只是将空元素添加到web.config中,如下所示:
<httpProtocol>
<customHeaders>
</customHeaders>
</httpProtocol>
然而,它并不像正确的方式。
有没有更正确的方法在变换上构建元素树?
答案 0 :(得分:3)
将空<customHeaders>
节点添加到web.config是有效的,因为您拥有的转换是插入<add .../>
节点,而不是<customHeaders>
节点。它只能插入与该点匹配的位置。
要插入节点树,请在XML中稍微移动xdt:Transform="Insert"
。如果你从web.config开始:
<?xml version="1.0">
<configuration>
<system.webServer>
<httpProtocol />
</system.webServer>
</configuration>
并将其转换为:
<?xml version="1.0">
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<system.webServer>
<httpProtocol>
<customHeaders xdt:Transform="Insert">
<add name="Strict-Transport-Security" value="max-age=16070400; includeSubDomains" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
你最终会得到:
<?xml version="1.0">
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Strict-Transport-Security" value="max-age=16070400; includeSubDomains" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
这是一个有用的web.config transformation tester。