Get Cookie from SOAP response header

0
My question is similar to this https://community.mendix.com/link/questions/5836. Is there a way to access “Cookie” information from SOAP Response (see below) using Microflow.   I can only access following information in $latestHttpResponse but not cookie. $latestHttpResponse/Content has no cookie information. Without this cookie, I will not be able to get session id from third party integration service.
asked
4 answers
1

Have you tried a Retrieve activity, by-association, and retrieve the headers fro $latestHttpResponse?

answered
0

I googled and found this: https://github.com/mendix/RestServices/issues/4 , unfortunately it is for REST and contains a dead link on top, but maybe you can bend it to your will nonetheless :|

answered
0

And you also found https://forum.mendix.com/link/questions/3171 this?

answered
0

To solve this – The headers for the $latestHTTPResponse are stored in HttpHeader objects which have a reference to the response itself. You can use a retrieve-by-association to retrieve them:The headers for the $latestHTTPResponse are stored in HttpHeader objects which have a reference to the response itself. You can use a retrieve-by-association to retrieve them:

answered