Sure, first set up http as source, add http://entradatest.aheadrm.com/entrada/listDestinations as source.
Add three static query string params:
from with value AHD01687
to with value AHD01685
aggreementId with value AHD01685:00002
Apply a script like:
1: <?xml version="1.0" encoding="utf-8"?>
2: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3: <xsl:output method="html" indent="yes"/>
4:
5: <xsl:template match="Countries">
6: <table>
7: <tr>
8: <th>Code</th>
9: <th>Name</th>
10: </tr>
11: <xsl:for-each select ="Country">
12: <tr>
13: <td>
14: <xsl:value-of select ="@Code"/>
15: </td>
16: <td>
17: <xsl:value-of select ="@Name"/>
18: </td>
19: </tr>
20: </xsl:for-each>
21: </table>
22: </xsl:template>
23: </xsl:stylesheet>