I'm receiving the below xml response and I need to parse so that all I get is Collection of the URL128 xml Element values. Any ideas on the most efficient way to accomplish this in Java?
<?xml version="1.0" encoding="utf-8"?>
<imagesXML>
<Images>
<Image>
<ImageUID Scope="Public" Type="Guid" Value="{7f2535d0-9a41-4997-9694-0a4de569e6d9}"/>
<CorbisID Scope="Public" Type="String" Value="42-15534232"/>
<Title Scope="Public" Type="String" Value="Animal"/>
<CreditLine Scope="Public" Type="String" Value="© Robert Llewellyn/Corbis"/>
<IsRoyaltyFree Scope="Public" Type="Boolean" Value="False"/><AspectRatio Scope="Public" Type="String" Value="1.500000"/>
<URL128 Scope="Public" Type="String" Value="http://cachens.corbis.com/CorbisImage/thumb/15/53/42/15534232/42-15534232.jpg"/>
</Image>
<Image>
<ImageUID Scope="Public" Type="Guid" Value="{7f2535d0-9a41-4997-9694-0a4de569e6d9}"/>
<CorbisID Scope="Public" Type="String" Value="42-15534232"/>
<Title Scope="Public" Type="String" Value="Animal"/>
<CreditLine Scope="Public" Type="String" Value="© Robert Llewellyn/Corbis"/>
<IsRoyaltyFree Scope="Public" Type="Boolean" Value="False"/><AspectRatio Scope="Public" Type="String" Value="1.500000"/>
<URL128 Scope="Public" Type="String" Value="http://cachens.corbis.com/CorbisImage/thumb/15/53/42/15534232/42-15534232.jpg"/>
</Image>
</Images>
</imagesXML>