in reply to Getting value from perl data structure
Now the subject and wanted value can be found thus:my $hr_CalendarItem = $response_xml->{'soap:Body'}->{'m:FindItemRespon +se'}->{'m:ResponseMessages'}->{'m:FindItemResponseMessage'}->{'m:Root +Folder'}->{'t:Items'}->{'t:CalendarItem'};
my $subject = $hr_CalendarItem->{'t:Subject'}; my $value = $hr_CalendarItem->{'t:ExtendedProperty'}->{'t:Value'};
|
|---|