Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you need to access other namespaces you need to add to namespaces with an namespace prefix. For example lets assume you have added namespace for "http://myexternalsystem" and assigned "ext" prefix for it, you can access like can access external elements with following script:

Code Block
languagejs
var orders = $Xml.Select('Customers/Customer//ext:Order');

...