Author: mposolda
Date: 2011-11-16 11:15:59 -0500 (Wed, 16 Nov 2011)
New Revision: 8082
Modified:
portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/SSO.xml
Log:
GTNPORTAL-2277 minor fix for PDF rendering
Modified:
portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/SSO.xml
===================================================================
---
portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/SSO.xml 2011-11-16
15:15:20 UTC (rev 8081)
+++
portal/trunk/docs/reference-guide/en-US/modules/AuthenticationAndIdentity/SSO.xml 2011-11-16
16:15:59 UTC (rev 8082)
@@ -103,7 +103,8 @@
which is by default bound only to host where the request is coming. When
used cookieDomain parameter, cookie is bound to domain (like
<emphasis>yourdomain.com</emphasis>),
which will ensure that it is shared among both hosts
<emphasis>node1.yourdomain.com</emphasis> and
<emphasis>node2.yourdomain.com</emphasis>. So in this case, valve
configuration can look like this:
</para>
-<programlisting language="XML" role="XML"><Valve
className="org.jboss.web.tomcat.service.sso.ClusteredSingleSignOn"
cookieDomain="yourdomain.com" />
+<programlisting language="XML" role="XML"><Valve
className="org.jboss.web.tomcat.service.sso.ClusteredSingleSignOn"
+ cookieDomain="yourdomain.com" />
</programlisting>
</step>
@@ -153,7 +154,8 @@
<para>
And edit it to match the following:
</para>
-<programlisting language="XML" role="XML"><Valve
className="org.jboss.web.tomcat.service.sso.ClusteredSingleSignOn"
cookieDomain="yourdomain.com" />
+<programlisting language="XML" role="XML"><Valve
className="org.jboss.web.tomcat.service.sso.ClusteredSingleSignOn"
+ cookieDomain="yourdomain.com" />
</programlisting>
<para>
This will ensure the <literal>JSESSIONIDSSO</literal> cookie
is used in the correct domain, allowing the SSO authentication to occur.
@@ -297,12 +299,14 @@
<para>
Open the
<filename><replaceable><JBOSS_HOME></replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/gatein.ear/web.war/groovy/groovy/webui/component/UIBannerPortlet.gtml</filename>
file and edit the line:
</para>
-<programlisting language="Java" role="java"><a
class="Login"
onclick="$signInAction"><%=_ctx.appRes("UILoginForm.label.Signin")%></a>
+<programlisting language="Java" role="java"><a
class="Login"
+
onclick="$signInAction"><%=_ctx.appRes("UILoginForm.label.Signin")%></a>
</programlisting>
<para>
To read:
</para>
-<programlisting language="Java" role="java"><a
class="Login"
href="/portal/private/classic"><%=_ctx.appRes("UILoginForm.label.Signin")%></a>
+<programlisting language="Java" role="java"><a
class="Login"
+
href="/portal/private/classic"><%=_ctx.appRes("UILoginForm.label.Signin")%></a>
</programlisting>
</step>
Show replies by date