Hi!
Are there restrictions regarding file size when parsing an xml file?
My xml-file is almost 700 MB.
Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hi!
Are there restrictions regarding file size when parsing an xml file?
My xml-file is almost 700 MB.
That's a very large XML file. Do you really need to parse the entire file? Can you instead just open the XML file and navigate, programmatically, to the sections(s) you need to access? Parsing that file will take a very very long time.
How do you parse the file? i.e. C$XML or XML Extensions...
---
Martin Turner
Senior Technical Support Engineer
Rocket Software
That's a very large XML file. Do you really need to parse the entire file? Can you instead just open the XML file and navigate, programmatically, to the sections(s) you need to access? Parsing that file will take a very very long time.
How do you parse the file? i.e. C$XML or XML Extensions...
---
Martin Turner
Senior Technical Support Engineer
Rocket Software
Thank you. I'll try to open the file and navigate. That is certainly a more efficient method to use.
( I parse the file with C$XML)