Hello,
I wrote a web service to create new calendar events. The requests i send are :
INSERT INTO egw_cal(cal_owner, cal_modified, cal_title, cal_modifier, cal_category, cal_description, cal_priority)
VALUES (194, 1263832245, ‘Test TD’, 194, ‘14’, ‘Test TD’, ‘2’)
UPDATE egw_cal SET cal_uid=‘calendar-50499-fe351eadd98e003fb1b66404004344fe’ WHERE cal_id=50499;
INSERT INTO egw_cal_dates (cal_id, cal_start, cal_end) VALUES (50499, 1263830400, 1263834000);
INSERT INTO egw_cal_user(cal_id, cal_user_type, cal_user_id) VALUES (50499, ‘u’, 194);
INSERT INTO egw_api_content_history(sync_appname, sync_contentid, sync_added, sync_modified, sync_changedby) VALUES (‘calendar’, 50499, ‘2010-01-18 17:01:45’,‘2010-01-19 09:23:46’, 194);
I see the event in the calendar but synchronisation on pda doesn’t succeed.
After modifiying my event in the egw calendar, synchronisation works well.
Could you tell me what i missed ?
Thanks for your help.