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. Any ideas on how to clear these up as well?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Figured this out on my own:

AxaptaObject infolog = this._ax.GetObject("infolog");
infolog.Call("clear", 0);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.