Re: Duplicate Receive Location?

Home Page Forums BizTalk 2004 – BizTalk 2010 Duplicate Receive Location? Re: Duplicate Receive Location?

#25423

Hi,

 

You can duplicate the receive location with the following Step :

  • Export Bindings
  • Copy and Past the xml corresponding to the receive location
  • change the Name of the receivelocation
  • Import Bindings

If you do like this, BizTalk must set an error because you use the same URI in two receive location. So you can add after you URI :?InboundId=MyParameterN

Example :

rloc1, uri : mssql://xxx.xx.xx.xxx/MyDatabase?InboundId=Rloc1
rloc2, uri : mssql://xxx.xx.xx.xxx/MyDatabase?InboundId=Rloc2

If you need to poll data in a receive location, I think it’s a good solution.

Hope this answer help you!

 

Regards