I am using Exchange Server 2003 on Windows 2003 platform. I am using a connector written in ASP to get information from the exchange server. I am using the code pasted below to get the information from the calendar: sql = "select ""DAV:href"" from" sql = sql & " scope('shallow traversal of """ & sHostCalendarUrl & """')" sql = sql & " where ""DAV:ishidden"" = False" sql = sql & " and (""urn:schemas:calendar:dtstart"" = CAST(""" & getUTCValue(oItem.StartTime) & """ as 'dateTime.tz'))" sql = sql & " and (""urn:schemas:calendar:dtend"" = CAST(""" & getUTCValue(oItem.EndTime) & """ as 'dateTime.tz'))" I get the attendee status correct most of the time but sometimes even if the attendee has 'accepted' it shows me 'noresponse' status.
For the attendee status of an appointment to be updated you must have first processed the responses from the attendees either via Outlook, OWA or CDOEX. see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/_cdo_processing_meeting_request_responses.asp Cheers Glen "lkt" wrote in message news:BD317189-6B24-45BE-9D10-CEF8A88D2336@microsoft.com... >I am using Exchange Server 2003 on Windows 2003 platform. I am using a > connector written in ASP to get information from the exchange server. I > am > using the code pasted below to get the information from the calendar: > > sql = "select ""DAV:href"" from" > sql = sql & " scope('shallow traversal of """ & sHostCalendarUrl & """')" > sql = sql & " where ""DAV:ishidden"" = False" > sql = sql & " and (""urn:schemas:calendar:dtstart"" = CAST(""" & > getUTCValue(oItem.StartTime) & """ as 'dateTime.tz'))" > sql = sql & " and (""urn:schemas:calendar:dtend"" = CAST(""" & > getUTCValue(oItem.EndTime) & """ as 'dateTime.tz'))" > > I get the attendee status correct most of the time but sometimes even if > the > attendee has 'accepted' it shows me 'noresponse' status.