Hi,
I created a web application that uses calendar API to create events.
I am getting weird results depending on where I host the app.
Our development servers are hosted in EST time zone.
Production servers are hosted in PST.
Our calendars are in EST time zone.
When we use the application in development, the events created have
the correct start and end times. But in the production servers they
are off by 3 hours.
For e.g.: If I create an event to start at 9AM and end by 10 AM. I am
seeing the event in my calendar to start at 12 PM and end by 1 PM.
I am using evententry to create events. After seeing this behaviour,
I specified the timezone as EST using one of the extension elements
as:
Dim lobjTimeZone As New TimeZone
lobjTimeZone.Value = "US/Eastern"
EventEntry.ExtensionElements.Add(lobjTimeZone)
Is there anyway to stop that timezone conversion?
-N
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---