私はこのようなxmlを持っています:
<MMP>
<MERCHANT>
<RESPONSE>
<url>http://203.114.240.77/paynetz/epi/fts</url>
<param name="ttype"></param>
<param name="tempTxnId"></param>
</RESPONSE>
</MERCHANT>
</MMP>
ttype
との値を取得するにはどうすればよいですかtempTxnId
。私は試した:
def details = new XmlParser().parseText(response)
details.MMP.RESPONSE //which returns the whole xml itself rather than its contents
私はどこで間違いを犯していますか?
前もって感謝します。