Hi David, I already figured it out , I used the following code: //I create a TextWriterTraceListener for the log file TextWriterTraceListener ctl = new TextWriterTraceListener(logfilepath); //I assign this listener to FlowEngineSource to get log messages from code execution : // Logger.FlowEngineSource.TraceInformation(logMessage) NxBRE.Util.Logger.FlowEngineSource.Listeners.Clear(); NxBRE.Util.Logger.FlowEngineSource.Listeners.Add(ctl); //I assign this listener to FlowEngineRuleBaseSource to get...
Hi, I want to do the exact same thing as Rajesh but I didn't understand how to do it. I want to trace information for the flow engine execution in a text file. How can I do that? Thanks. Regards, Safa
Hi, I want to do the exact same thing as Rajesh but I didn't understand how to do it. I want to trace information for the flow engine execution in a rule file. How can I do that? Thanks. Regards, Safa
maybe :p I am going to put NxBRE architecture in my report so i will change it to avoid confusing.
I didn't find anywhere mentioned that the flow engine uses binders but in the architecture figure in this link https://www.safaribooksonline.com/library/view/windows-developer-power/0596527543/ch04s02.html ( please find attached the architecture picture), the binder is placed above both engines so it appears like if the flow engine also use it, this is why i am confused.
Hi, In NxBRE architecture presented in this link https://www.safaribooksonline.com/library/view/windows-developer-power/0596527543/ch04s02.html show that the flow engine uses binder. I didn't understand how it uses binders and what for? As I understood, binders are used by the inference engine to assert facts based on business objects, but i didn't understand what the flow engines uses it for.
Hi, In NxBRE architecture presented in this link https://www.safaribooksonline.com/library/view/windows-developer-power/0596527543/ch04s02.html show that the flow engine uses binder. I didn't understand how it uses binders and what for? As I understood, binders are used by the inference engine to assert facts based on business objects, but i didn't understand what the flow engines uses it for.
Hi, I read that The Flow Engine contains an HTML-rendering engine that offers a convenient way to navigate through rules and read them transformed into pseudocode. in this link: https://www.safaribooksonline.com/library/view/windows-developer-power/0596527543/ch04s02.html I was wondering where can I find it and how to use it? and what it is used for? Thanks,