Why is the email atachment i sent by BizTalk “body.csv” in OUTLOOK 2016?

血红的双手。 提交于 2019-12-02 03:59:40

Change the context property MIME.FileName for the part of your attachment as well.

In an orchestration: (note the ".part" code)

Message.part(MIME.FileName) = "NewFileName.txt";

In a pipeline component: (note the ".BodyPart" code)

pInMsg.BodyPart.PartProperties.Write("FileName", "http://schemas.microsoft.com/BizTalk/2003/mime-properties", "NewFileName.txt");

Unfortunately we cannot see these context properties via the Message details screen in the BizTalk console. Attach a debugger to inspect these values.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!