转换 web.config 中的特定节点

发布于 2024-10-27 20:16:10 字数 1096 浏览 1 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉鱼一梦 2024-11-03 20:16:10

我将匹配并替换端点节点,如下所示:

<client>
    <endpoint name="IMyService"
            address="net.tcp://x.x.x.x:xx/MySvc"
            binding="netTcpBinding"
            bindingConfiguration="..."
            contract="..."
            xdt:Transform="Replace"
            xdt:Locator="Match(name)"
            >
        <identity>
            <servicePrincipalName value="host/productionMachine.domain.com" />
        </identity>
    </endpoint>
</client>

I would match against and replace the endpoint node, as follows:

<client>
    <endpoint name="IMyService"
            address="net.tcp://x.x.x.x:xx/MySvc"
            binding="netTcpBinding"
            bindingConfiguration="..."
            contract="..."
            xdt:Transform="Replace"
            xdt:Locator="Match(name)"
            >
        <identity>
            <servicePrincipalName value="host/productionMachine.domain.com" />
        </identity>
    </endpoint>
</client>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文