在 WSO2 ESB 中,如何存储 cookie 并在以后使用它们进行身份验证?

In WSO2 ESB, how to store cookies and use them later for authentication?

我正在调用一项服务,它会返回带有身份验证信息的 cookie。我如何存储 cookie 并在以后使用它们?

这对我不起作用。我看到 cookie 被退回,但我没有看到它被设置。

<!-- LOGON CALL -->
<property xmlns:ns="http://org.apache.synapse/xsd" xmlns:ns3="http://org.apache.synapse/xsd" name="setCookieHeader" expression="$trp:cookie"></property>
<payloadFactory media-type="xml">
    <format><somexml></somexml></format>
</payloadFactory>
<call>
    <endpoint>
       <address uri="http://serviceurl.domain.com" format="pox"></address>
    </endpoint>
</call>
<log>
<property name="cookie" expression="get-property('setCookieHeader')"></property>
</log>
<!-- The Above Log statement prints correctly -->

<!-- Second Service CALL -->
<property xmlns:ns="http://org.apache.synapse/xsd" xmlns:ns3="http://org.apache.synapse/xsd" name="setCookieHeader" expression="$trp:cookie"></property>
<payloadFactory media-type="xml">
    <format><somexml></somexml></format>
</payloadFactory>
<call>
    <endpoint>
       <address uri="http://serviceurl.domain.com" format="pox"></address>
    </endpoint>
</call>

从响应中获取 cookie:

<property name="setCookieHeader" expression="$trp:Set-Cookie" scope="default" type="STRING"/>

为下一个请求设置 cookie:

<property name="Cookie" expression="$ctx:setCookieHeader" scope="transport"/> <!-- if setCookieHeader has been initialized before -->

或者

<property name="Cookie" expression="$trp:Set-Cookie" scope="transport"/>