我不是BizTalk的新手,但这种情况有点新鲜。我在BizTalk Orchestration中有以下情况,
我搜索了很多,但几乎每个人都在谈论在业务流程中的管道中提供XML文档。
我也得到了以下链接,但到目前为止我无法获得有效的解决方案,
Calling FlatFile pipeline inside orchestration
4 Different ways to process an XLANGMessage
当我实现上面链接给出的解决方案时,我收到错误“ No Disassemble stage组件可以识别数据。”
由于性能限制,我也不想创建动态接收位置。
以下是我的代码,
在流中加载文件内容
按照第二部分的建议创建一个CustomBTXMessage实例。
加载流如下
customBTXMessage = new CustomBTXMessage(“MyMessageName”,
Service.RootService.XlangStore.OwningContext); customBTXMessage.AddPart(string.Empty,“Body”);
customBTXMessage [0] .LoadFrom(MS);
返回customBTXMessage.GetMessageWrapperForUserCode();
我认为这种情况在BizTalk世界中并不新鲜。任何这样做的人都必须能够快速帮助我。
答案 0 :(得分:1)
这是我要做的......或者至少先尝试一下。