new XML() constructor.TypeError: The processing instruction target matching "[xX][mM][lL]" is not allowVCF Operations Orchestrator 9.0.2
To resolve this issue, you must update your VCF Operations Orchestrator workflow scripts to use the fully supported built-in XML Plugin, which handles standard XML headers flawlessly without crashing.
Edit the affected workflow and locate the script task processing the XML payload.
Identify the line that uses the legacy, broken constructor. For example:
var apiResponse = new XML(response.contentAsString);
Replace it with the supported XMLManager.fromString() method:
var apiResponse = XMLManager.fromString(response.contentAsString);
Save and run the workflow to confirm the XML parses successfully.