2

I am writing custom code in Outlook Add-in using SharePoint Web Services to create a meeting workspace in SharePoint. Then I add a meeting to the workspace created. Basically I want to mimic the functionality provided by Outlook itself.

The problem is after a meeting is created, I can not set the MeetingWorkspaceUrl property in AppointmentItem using my custom code. It says the property is read only. But when I create a workspace using default Outlook functionality, I can see that MeetingWorkspaceUrl is set to a valid URL.

Can I do the same thing through custom code?

4

1 回答 1

1

MeetingWorkspaceUrl 在Outlook API中是只读的,您需要使用EWS ( AppointmentItem.MeetingWorkspaceUrl) 来分配其值。

于 2012-08-30T12:54:50.560 回答