in reply to Re^5: how does XML::DOM load XML?
in thread how does XML::DOM loadXML?

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^7: how does XML::DOM load XML?
by davorg (Chancellor) on Jan 24, 2007 at 09:19 UTC

    Looks to me like you're having problems with case sensitivity.

    Firstly, you are looking for tags called "Name" and "Result" where the tags are actually called "name" and "result". Secondly, your error message says that you're trying to call a method called "getnodevalue", but the method is actually called "getNodeValue".

    Case sensitivity is important.

    A reply falls below the community's threshold of quality. You may see it by logging in.