Retrieve XML of objects

Certified Senior Developer

Hey everyone, is there a way to automatically retrieve the XMLs of objects (Integration objects in particular) of an application?

  Discussion posts and replies are publicly visible

Parents Reply
  • Perhaps you can use either a!startRuleTestsApplications() or a!startRuleTestsAll(), and for every Integration you have an Expression rule that invokes that integration, and which has the relevant heartbeat information as a Test Case. You'd have to remember to create this kind of stub Expression Rule for every Integration but you could consider that to be best practice anyway. The unfortunate side-effect is that EVERY Test Case in EVERY Expression would also get invoked. Depending ion the volume of test cases and how often you want to heartbeat your remote systems this may not be a scalable option.

    The alternative is to create a custom framework (a process model) that would run as often as you wanted to heartbeat your remote systems and explicitly include the integrations you want to flex - that is, a static implementation, rather than the dynamic one you were hoping to implement. 

Children