I need the output of the z:row along from the xmlfile which is received as response from Sharepoint
I need the output as
Title dept
test  hr
gang  ht
The input i got as xmlfile is
<xml xmlns:s="uuid:ABCDDC" xmlns:dt="uuid:REDSD" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    <s:Schema id="RowsetSchema">
        <s:ElementType name="row" content="eltOnly" rs:CommandTimeout="30">
            <s:AttributeType name="Title" rs:name="Title" rs:number="1">
                <s:datatype dt:type="string" dt:maxLength="512"/>
            </s:AttributeType>
        <s:AttributeType name="dept" rs:name="dept" rs:number="1">
            <s:datatype dt:type="string" dt:maxLength="512"/>
        </s:AttributeType>
</s:ElementType>
</s:Schema>
<rs:data>
<z:row Title="test" dept="hr" />
<z:row Title="gang" dept="ht" />
</rs:data>
</xml>
 
    