Closed GoogleCodeExporter closed 9 years ago
Hi,
sorry i'm not able to help you.
But maybe you can post your complete php-code for getting all calendar items
for all users.
Thanks
Original comment by stoffelll@gmail.com
on 22 Jul 2010 at 11:16
Did you ever find a workaround for this? I am hitting it too.
Original comment by blodulv
on 26 Oct 2010 at 11:02
No. I use the Calendar body to get around the problem.
What I know till now: Outlook plugin was adding specific "user properties"
which I cannot get via Exchange Web Services.
I got around the issue by having the outlook plugin add that information in the
calendar body (some meeting information) which can be easily obtained by
GetItem request.
Original comment by sachinss...@gmail.com
on 26 Oct 2010 at 11:17
I found a workaround, if anyone is interested:
$FindItem->Traversal = "Shallow";
// XXX This is a ridiculous hack.
$FindItem->ItemShape->AdditionalProperties = new SoapVar('
<ns1:AdditionalProperties>
<ns1:FieldURI FieldURI="calendar:CalendarItemType"/>
<ns1:FieldURI FieldURI="calendar:IsMeeting"/>
<ns1:FieldURI FieldURI="calendar:IsRecurring"/>
<ns1:FieldURI FieldURI="calendar:Organizer"/>
<ns1:FieldURI FieldURI="calendar:Start"/>
<ns1:FieldURI FieldURI="calendar:End"/>
<ns1:FieldURI FieldURI="calendar:Duration"/>
<ns1:FieldURI FieldURI="item:Subject"/>
</ns1:AdditionalProperties>', XSD_ANYXML);
$FindItem->ItemShape->BaseShape = "IdOnly";
/* Etc... */
Original comment by blodulv
on 26 Oct 2010 at 11:31
Hi,
workaround for what?? I would appreciate if you have answer for any of the
following:
1. Outlook client (plugin) adds in Item Properties. I need to retrieve them via
Exchange Web Services. OR
2. Outlook client (plugin) adds in some Property tags and need to be retrieved
via Exchange Web Services.
Thanks,
Sachin
Original comment by sachinss...@gmail.com
on 9 Nov 2010 at 11:20
This issue has been moved to GitHub
https://github.com/jamesiarmes/php-ews/issues/6
Original comment by JamesIArmes@gmail.com
on 14 Feb 2012 at 2:26
Original issue reported on code.google.com by
sachinss...@gmail.com
on 14 May 2010 at 11:21