如何更改 NServiceBus 中序列化消息的命名空间

发布于 2024-09-11 11:50:49 字数 433 浏览 7 评论 0原文

我尝试将 appSetting“NameSpace”添加到我的发布者和订阅者,但消息仍然包含命名空间 http://tempuri.org /...

[编辑]

在发布者 EndpointConfig 中我添加了:

public class ServerInit : IWantCustomInitialization
{
    public void Init()
    {
        Configure.With().XmlSerializer("http://foo.com");
    }
}

这有效,但我宁愿在配置文件中看到它。如果有人可以建议一种方法来做到这一点,请告诉我。

I've tried adding the appSetting "NameSpace" to my publisher and subscriber but the messages still contain the namespace http://tempuri.org/...

[Edit]

In the publisher EndpointConfig I have added:

public class ServerInit : IWantCustomInitialization
{
    public void Init()
    {
        Configure.With().XmlSerializer("http://foo.com");
    }
}

This works but I would rather see this in the config file. Please let me know if anyone can suggest a way to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暗藏城府 2024-09-18 11:50:49

只需将其放入您的应用程序设置中,然后使用 .net 配置管理器将其拉出即可。

Just put that in your app settings and pull it using the .net configuration manager.

梦里南柯 2024-09-18 11:50:49

谢谢 Udi,我注意到经销商已经从 appSettings 中读取了此内容,只是想知道为什么其他人不这样做。

Thanks Udi, I noticed that the distributor reads this from the appSettings already, just wondered why the others don't.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文