Search code examples
schemabiztalkbiztalk-orchestrations

Deploying multiple similar schemas in BizTalk


I have two different servers on which two similar WCF services are running. Both services are exactly same (clone). I have to consume both services in a single orchestration because I have to communicate them with each other. (I am using "Add generated Items" to add service reference). I want to get data from one service method named "Get" and send it to others "Send" method. After deploying project I get error that "Cannot locate document specification because multiple schemas matched the message type #####".

I have read a solution of creating custom pipeline with a specific document schema but that didn't worked.

How I can handle this situation?


Solution

  • As these services are same so just adding service reference for any one of these will add the required schemas.Just create separate send ports for each service in BizTalk MMC and to connect the logical port created in orchestration to correct send port while configuring the orchestration.

    This solution Worked.....