<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.java.jasig.cas.devel">
    <title>gmane.comp.java.jasig.cas.devel</title>
    <link>http://blog.gmane.org/gmane.comp.java.jasig.cas.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1103"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1102"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1101"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1100"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1099"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1098"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1097"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1095"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1094"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1093"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1092"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1091"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1090"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1089"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1088"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1087"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1086"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1085"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1084"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1083"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1103">
    <title>CAS 3.21 + application -- very urgent help needed please!!</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1103</link>
    <description>I installed CAS 3.2.1 and deployed successfully with LDAP in my Windows 
XP and Tomcat5.25. Now I want to link the simple jsp application in 
Tomcat to CAS. I modified the CAS filter in web.xml as bellow. If I 
comment out "CAS Validation Filter", I got redirected to CAS and passed 
CAS login and went back to the application. However, I got "null" value 
(&lt;%=request.getRemoteUser()%&gt;) in my test.jsp. It should be supposed to 
have the CAS login username.

If I don't comment out "CAS Validation Filter", I got redirected to CAS 
and passed CAS login. But when CAS went back to the application, it 
throws out exception, something like

"*exception*
javax.servlet.ServletException: Unable to validate ProxyTicketValidator 
[[edu.yale.its.tp.cas.client.ProxyTicketValidator proxyList=[null] 
[edu.yale.its.tp.cas.client.ServiceTicketValidator
.....
"

It seems to me that the validation doesn't work. What is wrong with it? 
How to fix it? any recommendation?? any thing wrong with the following 
CAS filter??

Very urgent help needed!!!

........
   &lt;filter&gt;
     &lt;filter-name&gt;CAS Authentication Filter&lt;/filter-name&gt;
     
&lt;filter-class&gt;org.jasig.cas.client.authentication.AuthenticationFilter&lt;/filter-class&gt; 

         &lt;init-param&gt;
           &lt;param-name&gt;casServerLoginUrl&lt;/param-name&gt;
           &lt;param-value&gt;https://xxxxxxxxx:8443/CAS/login&lt;/param-value&gt;
         &lt;/init-param&gt;
         &lt;init-param&gt;
           &lt;param-name&gt;service&lt;/param-name&gt;
         
&lt;param-value&gt;http://xxxxxxxxx:8080/Recruiting/test.jsp&lt;/param-value&gt;
         &lt;/init-param&gt;
         &lt;init-param&gt;
           &lt;param-name&gt;serverName&lt;/param-name&gt;
           &lt;param-value&gt;xxxxxxx:8080/&lt;/param-value&gt;
         &lt;/init-param&gt;
       &lt;/filter&gt;

       &lt;filter&gt;
         &lt;filter-name&gt;CAS Validation Filter&lt;/filter-name&gt;
         
&lt;filter-class&gt;org.jasig.cas.client.validation.Cas10TicketValidationFilter&lt;/filter-class&gt; 

         &lt;init-param&gt;
           &lt;param-name&gt;casUrlServerPrefix&lt;/param-name&gt;
           &lt;param-value&gt;https://xxxxxxx:8443/CAS&lt;/param-value&gt;
         &lt;/init-param&gt;
         &lt;init-param&gt;
           &lt;param-name&gt;serverName&lt;/param-name&gt;
           &lt;param-value&gt;xxxxxxxxxxx:8080/&lt;/param-value&gt;
         &lt;/init-param&gt;
       &lt;/filter&gt;

   &lt;filter-mapping&gt;
       &lt;filter-name&gt;CAS Authentication Filter&lt;/filter-name&gt;
       &lt;url-pattern&gt;/*&lt;/url-pattern&gt;
   &lt;/filter-mapping&gt;

   &lt;!--filter-mapping&gt;
       &lt;filter-name&gt;CAS Validation Filter&lt;/filter-name&gt;
       &lt;url-pattern&gt;/*&lt;/url-pattern&gt;
   &lt;/filter-mapping --&gt;
...................
</description>
    <dc:creator>Edward Chen</dc:creator>
    <dc:date>2008-05-16T21:27:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1102">
    <title>help needed for CAS+CCOW implementation</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1102</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Shweta Tripathi01</dc:creator>
    <dc:date>2008-05-16T05:11:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1101">
    <title>CAS Services, AJAX, &amp; session timeout</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1101</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Robert Winch</dc:creator>
    <dc:date>2008-05-15T20:03:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1100">
    <title>Re: CAS for .net application</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1100</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Meghana Reddy Janumpally</dc:creator>
    <dc:date>2008-05-15T18:05:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1099">
    <title>Re: CAS for .net application</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1099</link>
    <description>What problems did you encounter with the .Net client?  It would be
easier to provide help if you can give us details of your problems...

Cheers

Paul Hunnisett

Meghana Reddy Janumpally wrote:


This email was independently scanned for viruses by McAfee anti-virus software and none were found
</description>
    <dc:creator>Paul Hunnisett</dc:creator>
    <dc:date>2008-05-14T07:40:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1098">
    <title>CAS for .net application</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1098</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Meghana Reddy Janumpally</dc:creator>
    <dc:date>2008-05-13T18:34:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1097">
    <title>Re: CAS for both jsp and .net pages</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1097</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Meghana Reddy Janumpally</dc:creator>
    <dc:date>2008-05-13T16:57:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1095">
    <title>Re: CAS for both jsp and .net pages</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1095</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Mark Rogers</dc:creator>
    <dc:date>2008-05-12T16:11:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1094">
    <title>CAS for both jsp and .net pages</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1094</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Meghana Reddy Janumpally</dc:creator>
    <dc:date>2008-05-12T15:57:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1093">
    <title>Re: cas-dev Digest, Vol 42, Issue 8</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1093</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Smita Vithal Kharkar</dc:creator>
    <dc:date>2008-05-09T03:55:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1092">
    <title>Re: cas-dev Digest, Vol 42, Issue 8</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1092</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Smita Vithal Kharkar</dc:creator>
    <dc:date>2008-05-09T03:34:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1091">
    <title>Re: cas-dev Digest, Vol 42, Issue 8</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1091</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Smita Vithal Kharkar</dc:creator>
    <dc:date>2008-05-09T03:04:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1090">
    <title>Re: CAS and Apache server</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1090</link>
    <description>
I am confused with the information below.
I have apache installed in my Windows XP machine. I want to deploy CAS 
3.2.1 into apache. How can I do that?. The information below you gave me 
is about casifying application.

Edward

Sean R. McNamara wrote:
</description>
    <dc:creator>Edward Chen</dc:creator>
    <dc:date>2008-05-08T21:10:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1089">
    <title>LdapPersonAttributeDao query Principal ID substitution</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1089</link>
    <description>Hello All,

I've been working on converting all our custom Principals to use the 
Directory Person model -- the main goal being to get access to 
additional Principal attributes from our custom directory software.  I'm 
basing the attribute resolution code loosely on the 
org.jasig.services.persondir.support.ldap.LdapPersonAttributeDao , but I 
can't seem to figure out exactly where or how the {0} 'variable' is 
substituted for the Principal ID in the query property.

I adapting the example config 
(http://www.ja-sig.org/wiki/display/CASUM/Attributes):

&lt;bean id="attribRepository"
class="org.jasig.services.persondir.support.ldap.LdapPersonAttributeDao"&gt;
&lt;property name="baseDN"
value="ou=people,o=company,c=fr" /&gt;
&lt;!-- This query is used to find the entry for populating attributes. {0} will be replaced by the new Principal ID extracted from the ldap--&gt;
&lt;property name="query" value="(uid={0})" /&gt;

&lt;property name="contextSource" ref="contextSource" /&gt;
&lt;property name="ldapAttributesToPortalAttributes"&gt;
&lt;map&gt;
&lt;!-- Mapping beetween LDAP entry's attributes (key) and Principal"s (value) --&gt;
&lt;entry key="cn" value="Name"/&gt;
&lt;entry value="Telephone" key="telephoneNumber" /&gt;
&lt;entry value="Fax" key="facsimileTelephoneNumber" /&gt;
&lt;/map&gt;
&lt;/property&gt;
&lt;/bean&gt;


Into:

       &lt;bean id="attributeRepository"
                class="org.jasig.services.persondir.support.dnd.DNDPersonAttributeDao"&gt;
                &lt;property name="query" value="{0}" /&gt;
                &lt;property name="fieldsToAttributes"&gt;
                        &lt;map&gt;
                                &lt;entry key="uid" value="uid" /&gt;
                                &lt;entry key="lastname" value="lastname" /&gt;
                        &lt;/map&gt;
                &lt;/property&gt;
        &lt;/bean&gt;




Everything seems swell until the point where the query attribute needs to be used, at which point I see that it's still set to it's 
literal value:

DNDPersonAttributeDao: in getUserAttributesIfNeeded; about to query: {0}

Any one have any experience or thoughts on this?

Thanks!

..Sean.
</description>
    <dc:creator>Sean R. McNamara</dc:creator>
    <dc:date>2008-05-08T17:33:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1088">
    <title>Re: CAS Configuration : SQL must not be null</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1088</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Scott Battaglia</dc:creator>
    <dc:date>2008-05-08T15:35:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1087">
    <title>CAS Configuration : SQL must not be null</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1087</link>
    <description>HTTP Status 500 - 

--------------------------------------------------------------------------------

type Exception report

message 

description The server encountered an internal error () that prevented it from fulfilling this request.

exception 

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.webflow.engine.ActionExecutionException: Exception thrown executing [AnnotatedAction&lt; at &gt;13e20dc targetAction = org.jasig.cas.web.flow.AuthenticationViaFormAction&lt; at &gt;927633, attributes = map['method' -&gt; 'submit']] in state 'submit' of flow 'login-webflow' -- action execution attributes were 'map['method' -&gt; 'submit']'; nested exception is java.lang.IllegalArgumentException: SQL must not be null
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:488)
org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:441)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
org.jasig.cas.web.init.SafeDispatcherServlet.service(SafeDispatcherServlet.java:115)
org.inspektr.common.web.ClientInfoThreadLocalFilter.doFilterInternal(ClientInfoThreadLocalFilter.java:48)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)


root cause 

org.springframework.webflow.engine.ActionExecutionException: Exception thrown executing [AnnotatedAction&lt; at &gt;13e20dc targetAction = org.jasig.cas.web.flow.AuthenticationViaFormAction&lt; at &gt;927633, attributes = map['method' -&gt; 'submit']] in state 'submit' of flow 'login-webflow' -- action execution attributes were 'map['method' -&gt; 'submit']'; nested exception is java.lang.IllegalArgumentException: SQL must not be null
org.springframework.webflow.engine.ActionExecutor.execute(ActionExecutor.java:64)
org.springframework.webflow.engine.ActionState.doEnter(ActionState.java:156)
org.springframework.webflow.engine.State.enter(State.java:191)
org.springframework.webflow.engine.Transition.execute(Transition.java:212)
org.springframework.webflow.engine.TransitionableState.onEvent(TransitionableState.java:107)
org.springframework.webflow.engine.Flow.onEvent(Flow.java:534)
org.springframework.webflow.engine.impl.RequestControlContextImpl.signalEvent(RequestControlContextImpl.java:205)
org.springframework.webflow.engine.ActionState.doEnter(ActionState.java:161)
org.springframework.webflow.engine.State.enter(State.java:191)
org.springframework.webflow.engine.Transition.execute(Transition.java:212)
org.springframework.webflow.engine.TransitionableState.onEvent(TransitionableState.java:107)
org.springframework.webflow.engine.Flow.onEvent(Flow.java:534)
org.springframework.webflow.engine.impl.RequestControlContextImpl.signalEvent(RequestControlContextImpl.java:205)
org.springframework.webflow.engine.impl.FlowExecutionImpl.signalEvent(FlowExecutionImpl.java:202)
org.springframework.webflow.executor.FlowExecutorImpl.resume(FlowExecutorImpl.java:222)
org.springframework.webflow.executor.support.FlowRequestHandler.handleFlowRequest(FlowRequestHandler.java:111)
org.springframework.webflow.executor.mvc.FlowController.handleRequestInternal(FlowController.java:165)
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:809)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:476)
org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:441)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
org.jasig.cas.web.init.SafeDispatcherServlet.service(SafeDispatcherServlet.java:115)
org.inspektr.common.web.ClientInfoThreadLocalFilter.doFilterInternal(ClientInfoThreadLocalFilter.java:48)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)


root cause 

java.lang.IllegalArgumentException: SQL must not be null
org.springframework.util.Assert.notNull(Assert.java:112)
org.springframework.jdbc.core.JdbcTemplate$SimplePreparedStatementCreator.&lt;init&gt;(JdbcTemplate.java:1257)
org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:645)
org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:653)
org.springframework.jdbc.core.JdbcTemplate.queryForObject(JdbcTemplate.java:696)
org.springframework.jdbc.core.JdbcTemplate.queryForObject(JdbcTemplate.java:707)
org.springframework.jdbc.core.JdbcTemplate.queryForInt(JdbcTemplate.java:734)
org.jasig.cas.adaptors.jdbc.SearchModeSearchDatabaseAuthenticationHandler.authenticateUsernamePasswordInternal(SearchModeSearchDatabaseAuthenticationHandler.java:42)
org.jasig.cas.authentication.handler.support.AbstractUsernamePasswordAuthenticationHandler.doAuthentication(AbstractUsernamePasswordAuthenticationHandler.java:56)
org.jasig.cas.authentication.handler.support.AbstractPreAndPostProcessingAuthenticationHandler.authenticate(AbstractPreAndPostProcessingAuthenticationHandler.java:71)
org.jasig.cas.authentication.AuthenticationManagerImpl.authenticate(AuthenticationManagerImpl.java:88)
org.jasig.cas.CentralAuthenticationServiceImpl.createTicketGrantingTicket(CentralAuthenticationServiceImpl.java:411)
org.jasig.cas.web.flow.AuthenticationViaFormAction.submit(AuthenticationViaFormAction.java:107)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:585)
org.springframework.webflow.util.DispatchMethodInvoker.invoke(DispatchMethodInvoker.java:99)
org.springframework.webflow.action.MultiAction.doExecute(MultiAction.java:133)
org.springframework.webflow.action.AbstractAction.execute(AbstractAction.java:192)
org.springframework.webflow.engine.AnnotatedAction.execute(AnnotatedAction.java:146)
org.springframework.webflow.engine.ActionExecutor.execute(ActionExecutor.java:59)
org.springframework.webflow.engine.ActionState.doEnter(ActionState.java:156)
org.springframework.webflow.engine.State.enter(State.java:191)
org.springframework.webflow.engine.Transition.execute(Transition.java:212)
org.springframework.webflow.engine.TransitionableState.onEvent(TransitionableState.java:107)
org.springframework.webflow.engine.Flow.onEvent(Flow.java:534)
org.springframework.webflow.engine.impl.RequestControlContextImpl.signalEvent(RequestControlContextImpl.java:205)
org.springframework.webflow.engine.ActionState.doEnter(ActionState.java:161)
org.springframework.webflow.engine.State.enter(State.java:191)
org.springframework.webflow.engine.Transition.execute(Transition.java:212)
org.springframework.webflow.engine.TransitionableState.onEvent(TransitionableState.java:107)
org.springframework.webflow.engine.Flow.onEvent(Flow.java:534)
org.springframework.webflow.engine.impl.RequestControlContextImpl.signalEvent(RequestControlContextImpl.java:205)
org.springframework.webflow.engine.impl.FlowExecutionImpl.signalEvent(FlowExecutionImpl.java:202)
org.springframework.webflow.executor.FlowExecutorImpl.resume(FlowExecutorImpl.java:222)
org.springframework.webflow.executor.support.FlowRequestHandler.handleFlowRequest(FlowRequestHandler.java:111)
org.springframework.webflow.executor.mvc.FlowController.handleRequestInternal(FlowController.java:165)
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:809)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:476)
org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:441)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
org.jasig.cas.web.init.SafeDispatcherServlet.service(SafeDispatcherServlet.java:115)
org.inspektr.common.web.ClientInfoThreadLocalFilter.doFilterInternal(ClientInfoThreadLocalFilter.java:48)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)


note The full stack trace of the root cause is available in the Apache Tomcat/5.5 logs.


--------------------------------------------------------------------------------

Apache Tomcat/5.5_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Smita Vithal Kharkar</dc:creator>
    <dc:date>2008-05-08T15:16:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1086">
    <title>X509 Authentication + revoked certificates</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1086</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Pavlos Drandakis</dc:creator>
    <dc:date>2008-05-08T15:10:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1085">
    <title>Re: Query regardingSearchModeSearchDatabaseAuthenticationHandler</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1085</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Scott Battaglia</dc:creator>
    <dc:date>2008-05-08T15:07:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1084">
    <title>Query regardingSearchModeSearchDatabaseAuthenticationHandler</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1084</link>
    <description>_______________________________________________
cas-dev mailing list
cas-dev-c5E7yoNEsvRIM2btvs0Z1A&lt; at &gt;public.gmane.org
http://tp.its.yale.edu/mailman/listinfo/cas-dev
</description>
    <dc:creator>Smita Vithal Kharkar</dc:creator>
    <dc:date>2008-05-08T15:00:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1083">
    <title>CAS 3.2.1 + apache proxypass +tomcat+application -urgenthelp!!</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1083</link>
    <description>Hi,

I have an Apache server and a Tomcat server. I have my CAS 3.2.1 up and 
running in Tomcat server. Now I want to link my application to CAS. My 
application is resided in Tomcat but Apache is virtually linked to this 
application by proxypass. We display the website by Apache, not by 
Tomcat. Without the Apache proxy, only the Tomcat, I know how to link 
the application to CAS, but with Apache on the Tomcat, I don't know how 
to use CAS to do the authentication.

Please help me for the solution.

Edward
</description>
    <dc:creator>Edward Chen</dc:creator>
    <dc:date>2008-05-07T19:40:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1081">
    <title>keytool needed??</title>
    <link>http://permalink.gmane.org/gmane.comp.java.jasig.cas.devel/1081</link>
    <description>Hi,

I have a couple of questions.
I installed CAS3.2.1 in my local workstation Windows XP with Tomcat 5.5. 
It works just fine with my local Mysql and LDAP. I deployed my local CAS 
to my company's Tomcat web server It works fine. Now I want to link the 
server CAS to the applications. I mean re-direct process.

I used demo instruction http://www.ja-sig.org/wiki/display/CASUM/Demo
to install my workstation CAS for a testing. I use keystore file...etc

My question is if I use to do the same thing by using keytool to 
self-author a server certificate in company's web server?  for example, 
do I need to add the following to server.xml


&lt;!-- Define a SSL HTTP/1.1 Connector on port 8443 --&gt;
&lt;Connector port="8443" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="C:/Documents and Settings/xxxxx/.keystore"
keystorePass="changeit"
truststoreFile="C:/Program 
Files/Java/jdk1.6.0_04/jre/lib/security/cacerts" /&gt;

and add the following in the web.xml


&lt;filter&gt;
&lt;filter-name&gt;CAS Filter&lt;/filter-name&gt;
&lt;filter-class&gt;edu.yale.its.tp.cas.client.filter.CASFilter&lt;/filter-class&gt;
&lt;init-param&gt;
&lt;param-name&gt;edu.yale.its.tp.cas.client.filter.loginUrl&lt;/param-name&gt;
&lt;param-value&gt;https://xxx.com:8443/cas/login&lt;/param-value&gt;
&lt;/init-param&gt;
&lt;init-param&gt;
&lt;param-name&gt;edu.yale.its.tp.cas.client.filter.validateUrl&lt;/param-name&gt;
&lt;param-value&gt;https://xxx.com:8443/cas/serviceValidate&lt;/param-value&gt;
&lt;/init-param&gt;
&lt;init-param&gt;
&lt;param-name&gt;edu.yale.its.tp.cas.client.filter.serverName&lt;/param-name&gt;
&lt;param-value&gt;xxx:8080&lt;/param-value&gt;
&lt;/init-param&gt;
&lt;/filter&gt;

&lt;filter-mapping&gt;
&lt;filter-name&gt;CAS Filter&lt;/filter-name&gt;
&lt;url-pattern&gt;/*&lt;/url-pattern&gt;
&lt;/filter-mapping&gt;
</description>
    <dc:creator>Edward Chen</dc:creator>
    <dc:date>2008-05-06T21:55:06</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.java.jasig.cas.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.java.jasig.cas.devel</link>
  </textinput>
</rdf:RDF>
