使用VisualStudio 2010.在我的业务流程中使用表达式动态转换消息。
construct outputmsg
{
System.Diagnostics.EventLog.WriteEntry("INTERFACE","Entered construct ..." );
transform (outputmsg) = oMap(Inputmsg);
System.Diagnostics.EventLog.WriteEntry("INTERFACE","after transform ..." );
}
现在我遇到以下错误
“对象引用未设置为对象的实例”
在BizTalk事件日志中,我注意到=>输入构造..,这意味着它进入构造方法。但在抛出异常之后。
我认为“变换”会出错。
我的解决方案中有相应的映射文件(用于转换)
我哪里错了?任何建议都会非常有用。
提前致谢。
答案 0 :(得分:1)