Property Transfer Conditional
Hi guys,
I'd like to perform a conditional Property Transfer from one response to the next request. I need to select the first DefCategoriesDispo with the StatutDispo on true and send the CatCode associated to the next request.
Here the response :
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetAllDispoSurAgenceV2Response xmlns="http://www.hitech.fr/">
<GetAllDispoSurAgenceV2Result>
<DefCategoriesDispo>
<CatId>7</CatId>
<CatCode>A</CatCode>
<StatutDispo>false</StatutDispo>
</DefCategoriesDispo>
<DefCategoriesDispo>
<CatId>8</CatId>
<CatCode>B</CatCode>
<StatutDispo>true</StatutDispo>
</DefCategoriesDispo>
<DefCategoriesDispo>
<CatId>9</CatId>
<CatCode>C</CatCode>
<StatutDispo>false</StatutDispo>
</DefCategoriesDispo>
</GetAllDispoSurAgenceV2Result>
</GetAllDispoSurAgenceV2Response>
</soap:Body>
</soap:Envelope>
Can someone help me please ?
Thanks !