GET http://my-host/my-resources/456' # =>
<my-resource id='456'>
<name>a name</name>
<parent id='123' xlink:href='http://my-host/my-resources/123'/>
</my-resource>
What's the best way to walk that tree with ActiveResource? Ideally
I'd like to avoid using the parent id and use the parent href instead,
as it seems more RESTful. But whatever works.
Thanks.
Steve