Sometimes when using dynamic ports, you also need properties from the advanced transport properties tab. These are the ones I have already used: BizTalkMessage(BTS.RetryCount) = 5 (Specifies how often sending on the port is retried) BizTalkMessage(BTS.RetryInt... = 5 (Specifies how many minutes to wait before the next retry) BizTalkMessage(FILE.CopyMode) = 0 (Specifies the behaviour when copying files: 0 = append, 1 = create, 2 = overwrite)...
Recently I worked for the first time with CData sections in XML messages. A CData section in an XML Document starts with <![CDATA[ and ends with ]]> and everything between is ignored by the XML parser. In my scenario I got xml (with some CData sections) from a WebService, transformed it with a map (and did some other things in an orchestration) and sent it to another WebService. The first WS gave me xml with CData but the second WS received none. After some debugging I found out that the xml...