转换 web.config 中的特定节点
我想使用 VS2010 web.config 转换功能,但我不确定应该使用 XPath 来替换某个值。
我定义了以下客户端服务端点:
<client>
<endpoint name="IMyService"
address="net.tcp://x.x.x.x:xx/MySvc"
binding="netTcpBinding"
bindingConfiguration="..."
contract="..."
>
<identity>
<servicePrincipalName value="host/testMachine.domain.com" />
</identity>
</endpoint>
</client>
我想将 servicePrincipalName
节点替换为以下值。
<servicePrincipalName value="host/productionMachine.domain.com" />
由于可能定义了多个客户端端点,因此我更喜欢使用标识特定端点节点的 XPath(在本例中为 name="IMyService")。
因此,在伪代码中,我需要这样做:
<servicePrincipalName value="host/productionMachine.domain.com"
xdt:Transform="Replace"
xdt:Locator="Condition([containing endpoint node] @name='IMyService')"
/>
有人可以告诉我那些方括号所在的位置应该是什么,或者向我展示一些替换该特定节点的其他时髦方法吗?
I want to use the VS2010 web.config transform functionality, but I'm unsure of the XPath I should be using to replace a certain value.
I have the following client service endpoint defined:
<client>
<endpoint name="IMyService"
address="net.tcp://x.x.x.x:xx/MySvc"
binding="netTcpBinding"
bindingConfiguration="..."
contract="..."
>
<identity>
<servicePrincipalName value="host/testMachine.domain.com" />
</identity>
</endpoint>
</client>
I want to replace the servicePrincipalName
node with the following value.
<servicePrincipalName value="host/productionMachine.domain.com" />
As there could be multiple client endpoints defined, I prefer to use an XPath that identifies the specific endpoint node (in this case, where name="IMyService").
So in pseudo code, I need to do this:
<servicePrincipalName value="host/productionMachine.domain.com"
xdt:Transform="Replace"
xdt:Locator="Condition([containing endpoint node] @name='IMyService')"
/>
Can someone tell me what should be going where those square brackets are, or show me some other funky way of replacing that specific node?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将匹配并替换端点节点,如下所示:
I would match against and replace the endpoint node, as follows: