我正在设置业务流程的消息分配形状内的元素值。我正在使用 XPATH 函数来做到这一点。
文本需要包含在 CDATA 部分中。这是我尝试执行的操作:
xpath(messageOut, "//Envelope/Body/MsgFFmt") = @"<![CDATA[" + _response + @"]]>";
但是,BizTalk对其进行了转义,并且元素内的文本最终看起来像这样:
<MsgFFmt><![CDATA[response content goes here]]></MsgFFmt>
关于指示BizTalk,我在 _response 字符串周围需要 CDATA 部分,我似乎在网络上找不到任何内容。有人可以帮忙吗?
谢谢
最佳答案
如果有人在看,我会回答我自己的问题,以分享它。这是基于这篇文章:http://soa-thoughts.blogspot.co.nz/2007/07/cdata-mapping-experience-inside-biztalk.html
我最终创建了一个Helper类:
public class MessageHelper
{
/// <summary>
/// Sets a CDATA section in a XLANG message.
/// </summary>
/// <param name="message">The xlang message.</param>
/// <param name="xPath">The xpath for the element which will contain the CDATA section.</param>
/// <param name="value">The contents of the CDATA section.</param>
/// <returns>The resulting xml document containing the CDATA section</returns>
public static XmlDocument SetCDATASection(XLANGMessage message, string xPath, string value)
{
if (message == null)
throw new ArgumentNullException("message");
if (message[0] == null)
throw new ArgumentNullException("message[0]");
var xmlDoc = (XmlDocument)message[0].RetrieveAs(typeof(XmlDocument));
var cdataSection = xmlDoc.CreateCDataSection(value);
var node = xmlDoc.SelectSingleNode(xPath);
if(node !=null)
{
node.InnerText = String.Empty;
node.AppendChild(cdataSection);
}
return xmlDoc;
}
}
这是在DLL是GAC之后从形状中调用它的方式:
MessageOut = MessageHelper.SetCDATASection(MessageOut, "/Envelope/Body/MsgFFmt", _string);
关于xml - BizTalk-消息分配形状中的CDATA,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19140272/