BizTalk 中是否有要求将传入的消息发送出去?

发布于 2025-01-14 21:13:56 字数 126 浏览 3 评论 0原文

我有一个编排,可以处理进行数据调用的传入消息。如果返回数据,则会创建一条新消息并通过“移动者”BizTalk 应用程序发送回接收端口。不再需要原始邮件,因此我已将其发送到丢弃文件夹。 BizTalk 中是否有要求需要将传入的消息发送出去?

I have an orchestration that processes incoming messages that make a data call. If data is returned, a new message is created and sent back to the receive port via a "mover" BizTalk application. The original message is no longer needed, so I've been sending it to a discard folder. Is there a requirement in BizTalk that requires a message coming in to be sent out?

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

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

发布评论

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

评论(1

千年*琉璃梦 2025-01-21 21:13:56

进入 BizTalk 的每条消息都需要路由到某处,否则它将因路由失败而挂起。

但是,当您使用编排时,一旦它消耗了消息,并且如果不需要,则无需将原始消息从编排发送到任何地方,当编排结束时,该消息将消失

在消息中仅在没有编排的情况下,您的选项是

  1. 将文件发送端口到文件夹,您有一个脚本来清理它们
  2. 发送端口上的空适配器,空适配器是接受消息的自定义适配器从消息框中删除它。

Each message that comes into BizTalk needs to be routed somewhere yes, otherwise it will suspend with a routing failure.

However as you are using an Orchestration, once it has consumed the message, and you don't need to send the original message anywhere from the Orchestration if you don't need it, when the Orchestration ends, that message will be gone

In message only scenarios, where you don't have an orchestration your options are

  1. A file send port to a folder, where you have a script to clean them up
  2. A null adapter on a send port, a null adapter is a custom adapter that takes the message from the message box and just discards it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文