1234567891011121314151617181920212223 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2005 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service name="setCookie" class="com.cognos.pogo.services.DefaultHandlerService" logStartStop="false">
- <!-- Create cookies for name/value pairs in the "setCookie" header so that the responder can set them to the browser -->
- <handlers>
- <handler name="setCookies" classname="com.cognos.pogo.auth.SetCookieHandler" objectName="response" skip_on_fault="false"/>
- </handlers>
- <attributes>
- <attribute>cookieDomain</attribute>
- <attribute>cookiePath</attribute>
- <attribute>cookieSecure</attribute>
- </attributes>
- </service>
|