BizTalk 2013: Inserting RawXML (Whole Incoming XML Message) in SQL database
In some scenarios, it is required to store the message which is received from sender along with 07ansforming it to the destination format. One such scenario is to store the RawXml (Whole Incoming XML Message) in database as it is. To demons07ate this, used the Scenario : Order Message is received and we are to store the OrderId and the whole Order in database. For that I have created a TestDb, a table Order with two fields Id and RawXML. Input Schema: For the purpose of demo, I have kept only three fields in the input schema, and ID field is marked as distinguished as it will be used while cons07ucting Outbound Message. Destination Schema: I have a table created in TestDb database in to which the Order Id of the incoming message and the Order as it is received i.e. whole incoming Message is inserted. To do so we need to create a destination schema for BizTalk but based on already defined table thus we would use Add Generated Items -> Consume...