Dynamics AX / AXAPTA .Net Business Connector - 如何清除旧异常

发布于 2024-12-09 06:54:25 字数 295 浏览 0 评论 0原文

我正在编写一个小工具来处理 AX 交易,并发现每次出现错误时,我的异常输出都会增加。

看来每次 XppException 发生时,所有先前的异常也会被输出。正如您可以想象的那样,这并不漂亮并且可能会引起混乱。

在处理每个异常时,是否有某种方法可以清除所有构建的异常消息?

另外,我收到了大量

ClrBridgeLoader:致命错误:无法加载 Microsoft.Dynamics.ClrBridge.dll。

错误消息。如何清除这些呢?

I'm writing a little tool to process AX transactions and have discovered that with each error, my exception output grows.

It appears that each time an XppException happens all previous exceptions are output as well. As you can imagine, this is not pretty and can cause confusion.

Is there some way to clear all the built-up exception messages when handling each exception?

Also, I am getting a large number of

ClrBridgeLoader : fatal error : Microsoft.Dynamics.ClrBridge.dll cannot be loaded.

error messages. How to clear these up as well?

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

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

发布评论

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

评论(1

小ぇ时光︴ 2024-12-16 06:54:25

我自己想出了这个:

AxaptaObject infolog = this._ax.GetObject("infolog");
infolog.Call("clear", 0);

Figured this out on my own:

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