我在地图上有一个脚本functoid。我需要将消息传递给方法的参数,并返回关联的文档。我认为可行的方法是:
public XLANGMessage Map(XLANGMessage src);
但是,我找不到确认;我可以通过映射工具传递整条消息,将其视为文档,然后返回响应吗?我的方法正确吗?
我在地图上有一个脚本functoid。我需要将消息传递给方法的参数,并返回关联的文档。我认为可行的方法是:
public XLANGMessage Map(XLANGMessage src);
但是,我找不到确认;我可以通过映射工具传递整条消息,将其视为文档,然后返回响应吗?我的方法正确吗?
脚本 functoids 只能接受字符串并返回字符串。您必须在编排或帮助程序库中执行您尝试执行的操作,或者使用内联 XSLT(它可以选择一个节点集并基于它生成输出)。
在编排中,我会在 MessageAssignment 形状中执行类似的操作:
msg_NewMsg = new System.Xml.XmlDocument();
UtilityClass.Map(msg_OldMsg, msg_NewMsg);
msg_MapOutput.FieldToAssign = msg_NewMsg.OuterXml();
其中 FieldToAssign 是消息中的一个区分字段。在实用程序类中,您将执行以下操作:
public static void Map(XLANGMessage from, XLANGMessage to)
{
using(MemoryStream ms = from[0].RetreiveAs(typeof(Stream)))
{
using (StreamReader reader = new StreamReader(ms))
{
string x = reader.ReadToEnd();
// do stuff with x; alternative, XDocument xd = XDocument.Parse(reader.ReadToEnd());
}
}
to[0].LoadFrom(new StringReader(x));
// alt: save the XDocument to a memory stream and call LoadFrom on the memory stream
}