alexsc01 has asked for the wisdom of the Perl Monks concerning the following question:
And I can get the value of $subject with't:Items' => { 't:CalendarItem' => { 't:Subject' => 'test', 't:Sensitivity' => 'Normal', 't:ExtendedProperty' => { 't:ExtendedFieldURI' => { 'PropertyType' => 'String', 'PropertyName' => 'event_id', 'PropertySetId' => 'c11ff724....' }, 't:Value' => '133113' }, 't:End' => '2012-04-26T08:00:00Z', 't:ItemId' => { 'Id' => 'AAAYAFNjb3....', 'ChangeKey' => 'DwAAAB......' }, 't:LegacyFreeBusyStatus' => 'Free', 't:Location' => {}, 't:IsAllDayEvent' => 'false', 't:Start' => '2012-04-26T07:00:00Z' }}
But how do I get the value of ExtendedProperty -> Value (in this example it should return 133113 /Scott$subject = $response_xml->{'soap:Body'}->{'m:FindItemResponse'}->{'m:R +esponseMessages'}->{'m:FindItemResponseMessage'}->{'m:RootFolder'}->{ +'t:Items'}->{'t:CalendarItem'}->{'t:Subject'} ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Getting value from perl data structure
by Neighbour (Friar) on Apr 26, 2012 at 10:12 UTC |