First question :)

Below you will see a pic of my map that I have created. I am mapping the TransHeader record (grandchild of dataset, child of row) to a destination schema that will be tied to a send port (WCF-SQL to call a stored procedure).

When I use that send port, only the first instance of the TransHeader record is mapped and sent to SQL server. Obviously by looking at the schema, you can tell that multiple TransHeaders may exist in my inbound schema. I want to insert each instance.

Any thoughts?

pic:

http://imgur.com/zgDqZ

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

You can use a composite schema to wrap your WCF-SQL request and use a composite operation on the send port to execute these multiple requests.

Basically, you wrap your usp_InsertTransHeader request and response in a composite schema and mark the MaxOccurs to "unbounded" for the request and response.

This link, Composite Operations, should provide a good guide on how to achieve this.

Also, look out for Richard Seroters example in his book; SOA Patterns With BizTalk 2009

HTH

link|improve this answer
Awesome! Thank you so much, this was perfect. – Joe Letizia Oct 19 '11 at 16:10
2  
Anyone else having problems, remember to set the SOAP Action header Action: to CompositeOperation. This link helped me: biztalkgurus.com/biztalk_server/biztalk_blogs/b/biztalksyn/… – Joe Letizia Oct 19 '11 at 16:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.