I'm on 3.5.2.1, and have a situation where 
org.jasig.cas.web.support.WebUtils.getTicketGrantingTicketId() is returning 
NULL:

                public static String getTicketGrantingTicketId(final 
RequestContext context) {
                                final String tgtFromRequest = 
(String)context.getRequestScope().get("ticketGrantingTicketId");
                                final String tgtFromFlow = 
(String)context.getFlowScope().get("ticketGrantingTicketId");

                                return tgtFromRequest != null? tgtFromRequest : 
tgtFromFlow;
                }

So in my case, both the requestScope and the flowScope do not have a 
ticketGrantingTicketId attribute in them, and I need to know why.  Grepping for 
"ticketGrantingTicketId" in all Java source files, I see a ton of references to 
this string.  Any ideas for where I could start searching?  Need to figure out 
where the RequestContext's request- and flow-scopes get this property set. 
Thanks in advance!

-- 
You are currently subscribed to cas-user@lists.jasig.org as: 
arch...@mail-archive.com
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to