summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:06:32 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:06:32 +0000
commite442d9b838291c49a8a0ca218782e7b75da75a42 (patch)
treec1404139126a7650deb45f1cbc956cfa955683c5
parentbd6170f3cc8c18391ce61dccc23beee5f4c946db (diff)
* remove body->id and correlation->id setup, no need to set id on everything.
-rw-r--r--lasso/id-wsf/wsf_profile.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lasso/id-wsf/wsf_profile.c b/lasso/id-wsf/wsf_profile.c
index a1daa890..cbf8425f 100644
--- a/lasso/id-wsf/wsf_profile.c
+++ b/lasso/id-wsf/wsf_profile.c
@@ -811,7 +811,6 @@ lasso_wsf_profile_build_soap_envelope(const char *refToMessageId, const char *pr
/* Body */
body = lasso_soap_body_new();
- body->id = lasso_build_unique_id(32);
envelope = lasso_soap_envelope_new(body);
/* Header */
@@ -822,7 +821,6 @@ lasso_wsf_profile_build_soap_envelope(const char *refToMessageId, const char *pr
messageId = lasso_build_unique_id(32);
timestamp = lasso_get_current_time();
correlation = lasso_soap_binding_correlation_new(messageId, timestamp);
- correlation->id = lasso_build_unique_id(32);
if (refToMessageId != NULL)
correlation->refToMessageID = g_strdup(refToMessageId);
header->Other = g_list_append(header->Other, correlation);