WinRb / Viewpoint

A Ruby client access library for Microsoft Exchange Web Services (EWS)
Apache License 2.0
248 stars 171 forks source link

What is supported? #158

Closed itsbriantruong closed 9 years ago

itsbriantruong commented 10 years ago

Is the creation of recurring events supported in this gem? I have been spending a lot of time trying to figure out how this is done with the current version of the gem

zenchild commented 10 years ago

You should be able to create recurring events from the back-end API (with some work) but it has not been implemented in the more user-friendly front-end objects. In order to set up the recurrence rules you'll have to build out a hash that can be ingested by the builders that corresponds to the actual SOAP packets that EWS needs. See http://msdn.microsoft.com/en-us/library/office/aa580471(v=exchg.150).aspx

itsbriantruong commented 10 years ago

Ahh okay, I figured. I'll give it a shot. Thanks