I’m trying to retrieve list items related to a SharePoint 2007 Meeting Workspace lists such as Agenda, Objectives, Decisions, etc. using SharePoint Web Services and C#.
I tried unsuccessfully to find out any available method within Lists.asmx or Meetings.asmx web services.
I found some one similar post about this here, but unfortunatly without any suggestion.
Thanks,
I’v had this same issue, but i was using Object Model to Query items and luckily the issue was solved. It turns out you have to set MeetingInstanceId parameter either to some specific meeting instance ID, or -1 which will query all meeting data.
For a webservice Lists.GetListItems method there is the queryOptions parameter you can use to set MeetingInstanceId
I haven’t used webservices to query meeting workspace, but you can try yourself.