views:

44

answers:

0

Hello,

i'm trying to cancel a created event on outlook 2010. The create event method works fine, but when i'm trying to cancel it, the email doesn´t display any attachment or any opcion to do it.

At the beggining it shown an attachment called "not supported calendar message.ics" this was because i forget to put some fields on the request, but later on i fixed it but when i receive the cancellation mail, as i said, i can´t do anything.

Here i post the query, hope someone will find what i´m doing wrong.

Create event:

BEGIN:VCALENDAR
PRODID:-//----//Calendar 1.0//ES
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VEVENT
DTSTART:20100817T131700Z
DTEND:20100817T151700Z
DTSTAMP:20100815T220000Z
ORGANIZER:[email protected]
UID:[email protected]
CREATED:20100815T220000Z
DESCRIPTION:Description
LAST-MODIFIED:20100815T220000Z
LOCATION:Location
SUMMARY:Summary
END:VEVENT
END:VCALENDAR

The cancellation

BEGIN:VCALENDAR
METHOD:CANCEL
VERSION:2.0
PRODID:-//----//Calendar 1.0//ES
BEGIN:VEVENT
UID:[email protected]
DTSTART:20100817T131700Z
DTEND:20100817T151700Z
DTSTAMP:20100815T220000Z
ORGANIZER:[email protected]
SEQUENCE:1
DESCRIPTION:Description
END:VEVENT
END:VCALENDAR

Thanks in advance