How to read XML element (content) from binary file

Hi @Krystian_Klopocki, the XML node would read XML from a JSON data field of your item, not directly from a file. If you need to read XML from a file, you will need an additional Move Binary Data node in your workflow, so you essentially have three steps:

  1. Obtain the file (for example using the Read Binary File node or the HTTP Request node)
  2. Read the file content (using Move Binary Data)
  3. Parse the XML data (using the XML node)

I’ve posted an example of a workflow for this on the other thread over here: Read xml file - #8 by MutedJam