summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-12-16 21:53:49 +0000
committerRodrigo Moya <rodrigo@src.gnome.org>2003-12-16 21:53:49 +0000
commitba2538475abb95d19bc3d061375d5dee84fce4cd (patch)
treee520a40206d75a4c177e9e1459bcff92aba6c468
parentfe56381dce96b1156e5fb3344a0fc4f4dccbc5ad (diff)
downloadevolution-data-server-ba2538475abb95d19bc3d061375d5dee84fce4cd.tar.gz
no need to set the namespace for "types:", it's already set in
2003-12-16 Rodrigo Moya <rodrigo@ximian.com> * backends/groupwise/e-gw-connection.c (e_gw_connection_new): no need to set the namespace for "types:", it's already set in e_gw_message_new_with_header().
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/backends/groupwise/e-gw-connection.c2
-rw-r--r--servers/groupwise/e-gw-connection.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 00d7471aa..a1dba834e 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,11 @@
2003-12-16 Rodrigo Moya <rodrigo@ximian.com>
+ * backends/groupwise/e-gw-connection.c (e_gw_connection_new): no need to
+ set the namespace for "types:", it's already set in
+ e_gw_message_new_with_header().
+
+2003-12-16 Rodrigo Moya <rodrigo@ximian.com>
+
* backends/groupwise/e-gw-message.c (e_gw_message_new_with_header):
added the namespace for the SOAP types.
diff --git a/calendar/backends/groupwise/e-gw-connection.c b/calendar/backends/groupwise/e-gw-connection.c
index 4b1421e9c..2342c986b 100644
--- a/calendar/backends/groupwise/e-gw-connection.c
+++ b/calendar/backends/groupwise/e-gw-connection.c
@@ -265,7 +265,7 @@ e_gw_connection_new (const char *uri, const char *username, const char *password
/* build the SOAP message */
msg = e_gw_message_new_with_header (uri, "loginRequest");
- soup_soap_message_start_element (msg, "auth", "types", "http://schemas.novell.com/2003/10/NCSP/types.xsd");
+ soup_soap_message_start_element (msg, "auth", "types", NULL);
soup_soap_message_add_attribute (msg, "type", "types:PlainText", "xsi",
"http://www.w3.org/2001/XMLSchema-instance");
e_gw_message_write_string_parameter (msg, "username", username);
diff --git a/servers/groupwise/e-gw-connection.c b/servers/groupwise/e-gw-connection.c
index 4b1421e9c..2342c986b 100644
--- a/servers/groupwise/e-gw-connection.c
+++ b/servers/groupwise/e-gw-connection.c
@@ -265,7 +265,7 @@ e_gw_connection_new (const char *uri, const char *username, const char *password
/* build the SOAP message */
msg = e_gw_message_new_with_header (uri, "loginRequest");
- soup_soap_message_start_element (msg, "auth", "types", "http://schemas.novell.com/2003/10/NCSP/types.xsd");
+ soup_soap_message_start_element (msg, "auth", "types", NULL);
soup_soap_message_add_attribute (msg, "type", "types:PlainText", "xsi",
"http://www.w3.org/2001/XMLSchema-instance");
e_gw_message_write_string_parameter (msg, "username", username);