http://www.perlmonks.org?node_id=939452


in reply to Re: which is the best way to convert xml to GraphML using perl.
in thread which is the best way to convert xml to GraphML using perl.

I am unable to convert this xml file to GraphML format. can you give example how to convert xml to GraphML format using Graph::easy.

example.xml <?xml version="1.0" encoding="UTF-8" ?> <specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <orderinfo> <servicename>ssc</servicename> <Customer>dvr</Customer> <Suppliers> <Supplier Id="L7a" /> </Suppliers> </orderinfo> </specification>

I need to disply like servicename , customer, supplier as three nodes and edges from supplier to service name and service name to customer.I have large xml file like with same type of data. can you help or provide some examples.