summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:09:02 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:09:02 +0000
commit604bd4b79853f129d25bd2e40fb3b5cf9cf2145e (patch)
tree22f52f2167297be0ea594f4ed226d61501825859
parentb9ed809caccea6b3ec85185c5dbf65e62fc4efb3 (diff)
downloadlasso-604bd4b79853f129d25bd2e40fb3b5cf9cf2145e.tar.gz
lasso-604bd4b79853f129d25bd2e40fb3b5cf9cf2145e.tar.xz
lasso-604bd4b79853f129d25bd2e40fb3b5cf9cf2145e.zip
* 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 d78548c3..167eb1d1 100644
--- a/lasso/id-wsf/wsf_profile.c
+++ b/lasso/id-wsf/wsf_profile.c
@@ -163,7 +163,6 @@ lasso_wsf_profile_build_soap_envelope_internal(const char *refToMessageId, const
/* Body */
body = lasso_soap_body_new();
- body->id = lasso_build_unique_id(32);
envelope = lasso_soap_envelope_new(body);
/* Header */
@@ -174,7 +173,6 @@ lasso_wsf_profile_build_soap_envelope_internal(const char *refToMessageId, const
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);