summaryrefslogtreecommitdiff
path: root/calendar/backends
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-03-18 23:58:29 +0000
committerJP Rosevear <jpr@src.gnome.org>2004-03-18 23:58:29 +0000
commit44159fe444550cb0599049db6095a12e60043ce5 (patch)
tree4331aff512ac3c73810cb6e3287805e9b6ea8ac6 /calendar/backends
parent209f178ca496f700de0708f917707a2ff591e209 (diff)
downloadevolution-data-server-44159fe444550cb0599049db6095a12e60043ce5.tar.gz
put the xml prefixes back in, they weren't the issue
2004-03-18 JP Rosevear <jpr@ximian.com> * backends/groupwise/e-cal-backend-groupwise-utils.c (start_freebusy_session): put the xml prefixes back in, they weren't the issue
Diffstat (limited to 'calendar/backends')
-rw-r--r--calendar/backends/groupwise/e-cal-backend-groupwise-utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c b/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
index 6a81f8aa3..773df5da2 100644
--- a/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
+++ b/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
@@ -382,9 +382,9 @@ start_freebusy_session (EGwConnection *cnc, GList *users,
/* FIXME users is just a buch of user names - associate it with uid,
* email id apart from the name*/
- soup_soap_message_start_element (msg, "users", NULL, NULL);
+ soup_soap_message_start_element (msg, "users", "types", NULL);
for ( l = users; l != NULL; l = g_list_next (l)) {
- soup_soap_message_start_element (msg, "user", NULL, NULL);
+ soup_soap_message_start_element (msg, "user", "types", NULL);
e_gw_message_write_string_parameter (msg, "email", NULL, l->data);
soup_soap_message_end_element (msg);
}
@@ -401,8 +401,8 @@ start_freebusy_session (EGwConnection *cnc, GList *users,
icaltime = icaltime_from_timet(end, FALSE);
end_date = icaltime_as_ical_string (icaltime);
- e_gw_message_write_string_parameter (msg, "startDate", NULL, start_date);
- e_gw_message_write_string_parameter (msg, "endDate", NULL, end_date);
+ e_gw_message_write_string_parameter (msg, "startDate", "http://www.w3.org/2001/XMLSchema", start_date);
+ e_gw_message_write_string_parameter (msg, "endDate", "http://www.w3.org/2001/XMLSchema", end_date);
e_gw_message_write_footer (msg);