导航

2007年6月22日

摘要: 一段开发中的实例代码: XmlDocument xmldoc = new XmlDocument(); xmldoc.Load(textBox1.Text); XmlNodeList nodelist; if (xmldoc.DocumentElement.Namespace... 阅读全文

posted @ 2007-06-22 10:24 鸡尾虾的壳 阅读(482) 评论(2) 推荐(0)

2007年6月20日

摘要: Interchange: 经过XML与FF Receive Pipeline Component时,1个信封中的消息包会被分割为多个独立的消息体。这 些消息体的集合成为一个Interchange,通过Interchange ID关联。如果其中的某些消息体发生错误,如无法 通过模式验证,那么运行时会如何处理呢? 在2004版本中,仅支持标准Interchange处理模式。它的特点... 阅读全文

posted @ 2007-06-20 14:44 鸡尾虾的壳 阅读(191) 评论(0) 推荐(0)

2007年6月19日

摘要: BTS SDK: C:\Program Files\Microsoft BizTalk Server 2006\SDK\Samples\Pipelines\XslTransformComponent不需要建xsd对消息建模,在Sendpipe中直接用xsl对input file进行转化。适合整合遗留系统中的xls资源。 阅读全文

posted @ 2007-06-19 11:20 鸡尾虾的壳 阅读(168) 评论(0) 推荐(0)

2007年6月5日

摘要: SMTP.MessagePartsAttachments属性: 0 - No BizTalk message parts will be used as attachments. 1- The BizTalk message body part is sent as an e-mail attachment. In this case, the EmailBodyFile or EmailBody... 阅读全文

posted @ 2007-06-05 16:33 鸡尾虾的壳 阅读(242) 评论(0) 推荐(0)

2007年5月7日

摘要: 1. CopyMode (http://schemas.microsoft.com/BizTalk/2003/file-properties)2. LTPMsgBodyTracking (http://schemas.microsoft.com/BizTalk/2003/system-properties)3. ReceivedFileName (http://schemas.microsoft.... 阅读全文

posted @ 2007-05-07 14:14 鸡尾虾的壳 阅读(273) 评论(0) 推荐(0)

摘要: OrchInstGuid = System.Convert.ToString(Microsoft.XLANGs.Core.Service.RootService.InstanceId) 阅读全文

posted @ 2007-05-07 14:06 鸡尾虾的壳 阅读(139) 评论(1) 推荐(0)

2007年4月26日

摘要: WMI Script to Terminate Suspended Orchestration Instances Are you tired of having to go into the BizTalk Admin tool to terminate any suspended Orchestration instance before you want to redeploy? Scrip... 阅读全文

posted @ 2007-04-26 17:37 鸡尾虾的壳 阅读(224) 评论(0) 推荐(0)

摘要: Send Pipeline的Excute方法, inmsg.Context.Promote("OutboundTransportLocation", "http://schemas.microsoft.com/BizTalk/2003/system-properties", @"C:\timeouttest\out\%MessageID%.xml");物理Send Port上的URI配置被... 阅读全文

posted @ 2007-04-26 17:28 鸡尾虾的壳 阅读(216) 评论(0) 推荐(0)

2007年4月25日

摘要: 一个例子:var_xpath="string(/*[local-name()='Root' and namespace-uri()='http://XpathInOrchTest.In']/*[local-name()='SS' and namespace-uri()=''and position( )='2']/*[local-name()='f' and namespace-uri()='']... 阅读全文

posted @ 2007-04-25 17:53 鸡尾虾的壳 阅读(240) 评论(0) 推荐(0)

摘要: 输入:c1d1e2c2f3需求:两个b之间的元素被包含在上一个b元素中。实现脚本:输出:c1d1e2c2f3要点:xsl:variable可以保存节点集;Xpath中的axis非常有用。 阅读全文

posted @ 2007-04-25 17:46 鸡尾虾的壳 阅读(441) 评论(1) 推荐(0)