OK...I have it working now. I was using the wrong URL
apparently I need to use the URL specified in the href attribute of
the <link rel='edit' ...> node
Note to google guys...maybe look at the docs in this area - it's not
clear
Brian
I am using server side code written in ASP/VBScript and I am able to
get a list of calendars and add an event, even to a non-default
calendar, but I cannot modify an event or delete an event.
The .NET docs says this about update:
"The above code is roughly equivalent to sending PUT
http://www.google.com/calendar/feeds...@gmail.com/pr...@
to the service, along with the new entry (in Atom format) to replace
the original entry."
I assume the URL is the one extracted from the event/id node. I try
issuing a PUT after doing an authorisation and it returns: Invalid
request URI. status=400-4
and regarding an event delete the .NET docs says:
"The above code is roughly equivalent to sending DELETE
http://www.google.com/calendar/feeds...@gmail.com/pr...@
to the service"
and when I issue a DELETE using the same URL (entry/id node) it
returns "not implemented" with a status=501-4
Is this supposed to work? If so, any suggestions?
thanks Brian