in reply to Re^2: The best way to handle different type of XML files
in thread The best way to handle different type of XML files
I've found XML::Simple is really useful for prototyping a solution, frequently with either a dumbed-down schema or a subset of a real document. It lets me stub out the XML bit of the program so I can get the rest of the logic flowing.
After that, I usually end up re-writing that code to XML::XPath or its ilk.
I prefer to use XML::Simple when possible, because it takes a lot less care and feeding in the simplest cases. But like you pointed out, it blows up pretty quickly once the document is more than trivial.
Of course, it sounds like the OP has gotten past the prototype stage already. Frankly, it sounds like the project got a lot farther on XML::Simple than I would have expected.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: The best way to handle different type of XML files (Why I don't think much of XML::Simple)
by ikegami (Patriarch) on Nov 21, 2009 at 23:14 UTC | |
by mpeever (Friar) on Nov 22, 2009 at 22:02 UTC |