Biztalk - 我可以更改现有接收位置的接收端口吗?
我有两个不同的接收端口和两个接收位置 - 为每个端口分配一个位置。这些端口设置为接收完全相同类型的文件 - 我最终得到了这两个端口,因为我整合了两个执行相同操作的不同应用程序。
我想将两个位置组合成一个接收端口,但我似乎无法更改其中一个位置所属的位置 - 我找不到执行此操作的选项。本质上,我只想选取一个位置(任一位置 - 我不在乎),并将其分配给另一个端口,这样一个端口有两个位置,另一个端口没有。
有人知道如何更改现有位置的接收端口吗?
I have two different receive ports and two receive locations - one location assigned to each port. The ports are set to receive the exact same type of file - I ended up with both because I consolidated two different applications that did the same thing.
I want to combine both locations into a single receive port, but I don't seem to be able to change the location that either belongs to - there's no option to do this that I can find. Essentially, I just want to take one location (either - I don't care), and assign it to the other port, so that one port has two locations and the other has none.
Does somebody know of a way to change the receive port of an existing location?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我诉诸黑暗面,手动更新SQL表。我仍然欢迎任何拥有合法、受支持的方法来执行此操作的人,但对于任何其他需要答案的人,这是我编写的用于解决此问题的脚本(到目前为止没有副作用,尽管只有一天) :
I resorted to the dark side, and updated the SQL table manually. I'd still welcome anybody who has a legitimate, supported way to do this, but to any others who need an answer, here's the script I wrote to fix this problem (no side-effects so far, though it's only been a day):
请不要尝试在 BizTalk 系统数据库中进行此类直接 SQL 更改。您始终使用 Microsoft 提供的 API。
尝试使用 ExplorerOM 或 WMI 进行任何此类配置更改。
http://msdn.microsoft.com /en-us/library/microsoft.biztalk.explorerom.receiveport_members(v=bts.10)
http://msdn.microsoft.com/en- us/library/ee277482(v=bts.10).aspx
如果您直接更改数据库并提出 Microsoft 支持,他们将不会支持。
Please do not attempt such direct SQL changes in BizTalk system databases. You always use the API's provided by Microsoft.
Try either the ExplorerOM or WMI to do any such configuration changes.
http://msdn.microsoft.com/en-us/library/microsoft.biztalk.explorerom.receiveport_members(v=bts.10)
http://msdn.microsoft.com/en-us/library/ee277482(v=bts.10).aspx
If in case you make direct DB changes and raise Microsoft support, they won't support it.