您将需要一个 HTTP 类型的接收端口并使用 BTSHTTPReceive.dll,因为它看起来没有 SOAP 信封。所以你基本上想要一个新的端点,而不是试图让 WCF 工作。
是的,您必须使用自定义管道组件。
此外,当您收到多部分/表单数据的 MIME 消息时,您需要阅读如何处理提交给 BTSHttpReceive.dll 的“多部分/表单数据”消息,该消息将“MIME-Version:1.0”添加到消息中,以便您可以使用标准的 MIME 解码器管道组件。
public IBaseMessage Execute(IPipelineContext pc, IBaseMessage inmsg)
{
IBaseMessagePart bodyPart = inmsg.BodyPart;
if (bodyPart!=null)
{
byte[] prependByteData = ConvertToBytes(prependData);
byte[] appendByteData = ConvertToBytes(appendData);
string headersString = inmsg.Context.Read("InboundHttpHeaders", "http://schemas.microsoft.com/BizTalk/2003/http-properties").ToString();
string[] headers = headersString.Split(new Char[] {'\r','\n' }, StringSplitOptions.RemoveEmptyEntries);
string MimeHead=String.Empty;
bool Foundit=false;
for (int i=0;i<headers.Length;i++)
{
if (headers[i].StartsWith("Content-type:", true, null))
{
MimeHead = headers[i];
Foundit = true;
break;
}
}
if (Foundit)
{
StringBuilder sb = new StringBuilder();
sb.Append(prependData);
sb.Append("\r\n");
sb.Append(MimeHead);
sb.Append("\r\n");
prependByteData = ConvertToBytes(sb.ToString());
}
Stream originalStrm = bodyPart.GetOriginalDataStream();
Stream strm = null;
if (originalStrm != null)
{
strm = new FixMsgStream(originalStrm, prependByteData, appendByteData, resManager);
bodyPart.Data = strm;
pc.ResourceTracker.AddResource( strm );
}
}
return inmsg;
}
如果您想更了解如何处理附件,请参阅此博客通过 BizTalk 通过 Web 服务将二进制文档处理为 XLANGMessages
首先,我创建了一个自定义管道组件;使用 BinaryReader 将 MIME 编码的文档读入字节数组。请注意,您不能使用 StreamReader,因为流中的数据是 base64 编码的,并且将包含非 ASCII 字符。将字节数组转换为 Base64 编码字符串 创建类型化的 XML 文档并将 base64 编码字符串添加到其中一个元素。将 XML 文档发送回来。管道组件代码是;
public Microsoft.BizTalk.Message.Interop.IBaseMessage Execute(Microsoft.BizTalk.Component.Interop.IPipelineContext pc, Microsoft.BizTalk.Message.Interop.IBaseMessage inmsg)
{
var callToken = TraceManager.PipelineComponent.TraceIn(“START PIPELINE PROCESSING”);
//Assumes inmsg.BodyPart.Data is MIME encoded = base64 encoded
BinaryReader binReader = new BinaryReader(inmsg.BodyPart.Data);
byte[] dataOutAsBytes = binReader.ReadBytes((int)inmsg.BodyPart.Data.Length);
binReader.Close();
string dataOut = System.Convert.ToBase64String(dataOutAsBytes);
TraceManager.PipelineComponent.TraceInfo(“Original MIME part received = ” + dataOut,callToken);
// THIS IS THE AttachedDoc XML MESSAGE THAT WE ARE CREATING
//<ns0:AttachedDocument xmlns:ns0=http://BT.Schemas.Internal/AttachedDocument>
// <ns0:FileName>FileName_0</ns0:FileName>
// <ns0:FilePath>FilePath_0</ns0:FilePath>
// <ns0:DocumentType>DocumentType_0</ns0:DocumentType>
// <ns0:StreamArray>GpM7</ns0:StreamArray>
//</ns0:AttachedDocument>
XNamespace nsAttachedDoc = XNamespace.Get(@”http://BT.Schemas.Internal/AttachedDocument”);
XDocument AttachedDocMsg = new XDocument(
new XElement(nsAttachedDoc + “AttachedDocument”,
new XAttribute(XNamespace.Xmlns + “ns0″, nsAttachedDoc.NamespaceName),
new XElement(nsAttachedDoc + “FileName”, “FileName_0″),
new XElement(nsAttachedDoc + “FilePath”, “FilePath_0″),
new XElement(nsAttachedDoc + “DocumentType”, “DocumentType_0″),
new XElement(nsAttachedDoc + “StreamArray”, dataOut)
)
);
dataOut = AttachedDocMsg.ToString();
TraceManager.PipelineComponent.TraceInfo(“Created AttachedDoc msg = ” + AttachedDocMsg, callToken);
MemoryStream ms = new System.IO.MemoryStream(System.Text.Encoding.ASCII.GetBytes(dataOut));
IBaseMessage outmsg = pc.GetMessageFactory().CreateMessage();
outmsg.Context = pc.GetMessageFactory().CreateMessageContext();
// Iterate through inbound message context properties and add to the new outbound message
for (int contextCounter = 0; contextCounter < inmsg.Context.CountProperties; contextCounter++)
{
string Name;
string Namespace;
object PropertyValue = inmsg.Context.ReadAt(contextCounter, out Name, out Namespace);
// If the property has been promoted, respect the settings
if (inmsg.Context.IsPromoted(Name, Namespace))
{
outmsg.Context.Promote(Name, Namespace, PropertyValue);
}
else
{
outmsg.Context.Write(Name, Namespace, PropertyValue);
}
}
outmsg.AddPart(“Body”, pc.GetMessageFactory().CreateMessagePart(), true);
outmsg.BodyPart.Data = ms;
pc.ResourceTracker.AddResource(ms);
outmsg.BodyPart.Data.Position = 0;
TraceManager.PipelineComponent.TraceInfo(“END PIPELINE PROCESSING”, callToken);
TraceManager.PipelineComponent.TraceOut(callToken);
return outmsg;
}