i want to read an xml from stdin.
For parsing the xml I would use $data = $xml->XMLin(<STDIN>), anyway which is the most efficient way for evaluating all the data passed from stdin without rewriting it into a file?
If I use $data = $xml->XMLin(<STDIN>) it does not work.
Any suggestion?
Main goal is to use the data passed from the stdin in the most efficient way.