Reputation: 11
I want to get some records from the Database and then on the basis of the User ID and Password as credentials I need to call another web-service. I want to do this using threading with in Orchestration? Can I do threading with in orchestration. Means can I start some threads in Orchestration it self to make this thing work faster.
Thanks, Dinesh Arora.
Upvotes: 1
Views: 795
Reputation: 107237
If all you are looking for is scalability / concurrency, what I believe you need to do is:
You shouldn't directly be concerned with threading in BizTalk orchestrations (unless you are e.g. writing a new Adapter). e.g. BizTalk may choose to dehydrate your orchestration at a suitable point.
BizTalk will concurrently call the Web Service with as many messages as possible - this will depend on the number of messages returned from SQL, the number of host instances and send adapter threads on your BTS servers, as well as the actually throughput of the downstream web service.
Upvotes: 2