zoukankan
html css js c++ java
[BizTalk]让BizTalk消息中携带附件.
Use System.Xml.XmlDocument as the part type for the message, this is treated
as a generic stream of data. Then you can use a stream of data for this
part.
实现这样一个功能:
1.访问SQL Reporting Service得到一个报表的数据
2.将报表数(stream)赋给BizTalk中的一个消息中。
使用
System.Xml.XmlDocume数据类型.
代码如下:
public
static
void
CreateReportPart(XLANGMessage msg,
int
partIndex,
string
reportName)
{
System.IO.Stream reportStream
=
ReportServicesProxy.GetReport(reportName);
ReportStreamFactory factory
=
new
ReportStreamFactory(reportStream);
msg[partIndex].LoadFrom(factory);
}
public
class
ReportStreamFactory : IStreamFactory
{
System.IO.Stream _stream;
public
ReportStreamFactory(System.IO.Stream stream)
{_stream
=
stream;}
public
System.IO.Stream CreateStream()
{
return
_stream;}
public
void
Dispose()
{_stream.Close();}
}
通过类似这样的方案,就可以将附件添加到消息中了
查看全文
相关阅读:
JQuery学习之语法
sysbench
fio——IO基准测试
Python待分析的模块
Taglist
tcprstat
SQL注入
Nytro MegaRaid
dstat
Python之hashlib模块
原文地址:https://www.cnblogs.com/xuzhong/p/236283.html
最新文章
使用Vue.js时,对Chrome控制台的一点小心得
03、 forms组件
02-分页器,自定义分页器,解耦函数分页器,分页器class
01- ajax, 登录验证,json数据,文件上传
11 基于django的图书管理系统 多表
10 ORM 多表操作 查询
09 ORM 多表操作,创建表,添加记录
08- 图书管理系统
6-1 章节作业
07 -模型层ORM
热门文章
06-模板层
JSON学习之二
JSON学习之一
JQuery学习之其他
JQuery学习之Ajax应用
JQuery学习之遍历
JQuery学习之jQuery尺寸
JQuery学习之操作CSS
JQuery学习之操作DOM
JQuery学习之各种效果演示
Copyright © 2011-2022 走看看