summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/lasso-book/writing-a-c-sp.txt5
-rw-r--r--docs/lasso-book/writing-a-php-sp.txt4
2 files changed, 5 insertions, 4 deletions
diff --git a/docs/lasso-book/writing-a-c-sp.txt b/docs/lasso-book/writing-a-c-sp.txt
index c8a82d7c..b3e855d2 100644
--- a/docs/lasso-book/writing-a-c-sp.txt
+++ b/docs/lasso-book/writing-a-c-sp.txt
@@ -389,8 +389,9 @@ Identity and session dumps should be restored to prepare the logout request.
lasso_logout_build_request_msg(logout);
-The service provider must then make a SOAP request to the identity provider;
-``msg_url`` and ``msg_body``. You should then pass the answer to Lasso::
+The service provider must then make a SOAP request to the identity provider as above with
+LASSO_PROFILE(logout)->msg_url and LASSO_PROFILE(logout)->msg_body values.
+You should then pass the answer to Lasso::
lasso_logout_process_response_msg(logout, answer);
diff --git a/docs/lasso-book/writing-a-php-sp.txt b/docs/lasso-book/writing-a-php-sp.txt
index d56f638f..590b2f34 100644
--- a/docs/lasso-book/writing-a-php-sp.txt
+++ b/docs/lasso-book/writing-a-php-sp.txt
@@ -346,8 +346,8 @@ Identity and session dumps should be restored to prepare the logout request.
$lassoLogout->buildRequestMsg();
-The service provider must then make a SOAP request to the identity provider;
-``$msgUrl`` and ``$msgBody``. You should then pass the answer to Lasso::
+The service provider must then make a SOAP request to the identity provider as above with
+$lassoLogout->msgUrl and $lassoLogout->msgBody values. You should then pass the answer to Lasso::
$lassoLogout->processResponseMsg($answer));