2

I've noted from the MSDN page that policy isn't exportable to a bindings file.

Is there another way to import/export the tracking setting?

Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54
SteveC
  • 15,808
  • 23
  • 102
  • 173
  • It certainly isn't obvious. It is not in the binding file or the policy file exported from BizTalk. The BizTalkOM shared library only knows about the Port Tracking Types and not the Policy ones. So I think is short the answer is No, you can't import or export those. – Dijkgraaf Jul 29 '14 at 03:58
  • Did you ever find a way of doing this? – Dijkgraaf Oct 27 '16 at 23:44

1 Answers1

-1

Try looking at the following MSDN page which describes the method by first exporting only the policy using BTSTask into an MSI and afterwards using BTSTask to import them again.

BTSTask does not provide a specific command for importing policies; however you can use the ExportApp command of BTSTask to selectively export only the policies in an application that you want, including no other application artifacts. Then you can use the ImportApp command to import the .msi file into an application in a different BizTalk group. This is the approach described in this topic. When you do this, the policy is automatically imported and published in the BizTalk group and added to the specified application.

Hope this helps!

zurebe-pieter
  • 3,246
  • 21
  • 38