Configure the Web service that generates tokens to allow cookie forwarding for one, some or all user accounts.
Procedure
- On the machine that runs the Web service that generates authentication tokens, access its configuration directory: either WEB-INF/classes for a Java Web application or bin\config for a .NET Web application.
- Open the Content Delivery Web service configuration file cd_webservice_conf.xml.
- Find the account or accounts (
Account section(s)) for which you want to allow cookie forwarding.
- Inside each such
Account section, in the Metadata section, add a new Param element with its Name attribute set to AllowedCookieForwarding and its Value attribute set to true.
This should result in the following type of section:
<Account Id="MyAccount" Password="encrypted:fhS6whphjS2G2rG6aI6T/g==">
<Metadata>
...other named parameters...
<Param Name="AllowedCookieForwarding" Value="true" />
</Metadata>
</Account>
- Save and close cd_webservice_conf.xml.