Hi there!
Is there any way to grab all the info of both nodes of the following XML feed (call_details and ressource_details) in one reader ? I'm having a horrible time trying to figure out how to get both nodes to be linked to a FormPanel in their respective form fields 
PHP Code:
<?xml version="1.0" encoding="iso-8859-1" ?>
<call>
<call_details>
<number>15590</number>
<description>[fducharme 2010-09-21 11:49] Test</description>
<dateentered>2010-09-21 11:49</dateentered>
<priority>P1 (Critical)</priority>
<status>In progress</status>
<category>Hardware</category>
<subcategory>Damaged Equipments</subcategory>
<producttype>Batterie</producttype>
<summary>Test</summary>
<solution>[WebClient 2010-09-29 17:25 Client is requesting an update
</solution>
</call_details>
<ressources>
<ressource_details>
<name>Ressource #1</name>
</ressource_details>
<ressource_details>
<name>HELPDESK TEAM</name>
</ressource_details>
</ressources>
</call>
Thanks very much!