in reply to take input data as hash from a xml file

I will put the question in other way,
How to get the input arguments as hash from the xml file for the test scripts. for eg. the test script can read scalar within a tag in the xml file, but how to input and read a hash from the xml file.

thanks
rsennat

Replies are listed 'Best First'.
Re^2: storing hash in a xml file
by davido (Cardinal) on Dec 07, 2005 at 07:03 UTC

    Try reading the docs for the module that was suggested: XML::Simple. That should provide a more thorough answer to your question than any response here. But if you're still unclear after completing the ten minute homework assignment we've given you, don't just rephrase the question. Instead, try focusing on the one aspect of the question that continues to elude you. Again, the documentation and a few good examples can be found here.


    Dave

Re^2: storing hash in a xml file
by rsennat (Beadle) on Dec 07, 2005 at 10:03 UTC
    Thanks. I could get that using XMLin() and XMLout() of XML::Simple module

    rsennat