0

I am using Biztalk 2006R2.

I would like to know how to include the binding status (enlist/unenlist/start/stop) in the binding exported xml.

Smern
  • 18,746
  • 21
  • 72
  • 90
hosir
  • 477
  • 1
  • 9
  • 33
  • 2
    I don't actually believe that this is possible - we have taken a screenshot in the past prior changing config so we can re-create this config later. Simple, but it works! – Nick Heppleston Oct 25 '13 at 08:52

1 Answers1

0

The binding files do contain that information already.

  1. For Orchestrations it is called State (Default, Unenlisted, Enlisted, Started) see Service (Services Node)
  2. For Receive Locations it is called Enabled and is a boolean, see ReceiveLocation (ReceiveLocations Node)
  3. For send ports there is also a property, can't recall what it is at the moment.
Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54
  • I found that in receive location, there is a xml element called "Enable". But in sendportgroup and sendport, there is no such xml element. Therefore, i do not know whether the sendportgroup or sendport is enabled or not. – hosir Oct 28 '13 at 03:11
  • Yes, looking at it again, I can't find it for the send port or send port group either. Hover you can write scripts that use WMI to retrieve these if necessary. – Dijkgraaf Oct 28 '13 at 20:06