I'm attempting to write an application using SOAP::Lite that receives XML code from a WebService. The XML code should look like the following:
What I'm getting is something similar to HASH(0x31a2484) . How can I access this data or even convert this into a string?
Thanks in advance.
Code:
<Message MessageID="12345" PageNumber="1" PageCount="1" MinRecord="1" MaxRecord="123">
<Deliveries>
<Delivery Attempts="1" CallCreditsUsed="1.00">
<DeliveryStatus>Delivered to person</DeliveryStatus>
<PhoneNumber>123-456-7890</PhoneNumber>
<Name>John Smith</Name>
<Delivered>02/06-2008 4:19 PM</Delivered>
<TimeZone>CT</TimeZone>
</Delivery>
</Deliveries>
</Message>
Thanks in advance.
Comment