in reply to Re: Tie::IxHash weird metadata?
in thread Tie::IxHash weird metadata?

Aha, now something dawned on me. Thanks a lot!

I can't just ignore the return value, because I have to Push something on it later, but I can of course work on a different variable. When I do that, it gets through XML::Simple beautifully indeed! :-) Jihaa!

However, I get a new problem, all this happens in a recursive sub, to go through the response tree. But modifying the underlying hash apparently has the side effect of stopping the recursion... :-( So, now I have a different problem to look into...

Guess I'd just get to work...

Replies are listed 'Best First'.
Re: Re: Tie::IxHash weird metadata?
by grantm (Parson) on Mar 29, 2003 at 21:16 UTC
    I can't just ignore the return value, because I have to Push something on it later

    If you're just 'push'ing something on, then you still shouldn't need the tied object reference - just assign a value to a key and TieIxHash will still retain the order.