Hi,

I'm having a hard time understanding the tutorial on authentication from
the coccon website.
My case:
I have a loginpage (login) with a field for user and password. If the user
is logged in successfully, he should be redirected to services, which is
protected.
My questions:
How / Where do I check the parameters, if I wanna check the parameters with
entries in a database.

If I try to access the page services now directly, I get the following
error message:

The
org.apache.cocoon.www.file_.C_.Apache_Group.Tomcat_4_1.webapps.cocoon.mount.fraud.sitemap_xmap
 notifies that org.apache.avalon.framework.component.ComponentException
says:
UnnamedSelector: ComponentSelector could not find the component for hint
[auth-protect]
More precisely:
org.apache.avalon.framework.component.ComponentException: UnnamedSelector:
ComponentSelector could not find the component for hint [auth-protect]

Here is my sitemap:

                 ....
                 ....
      <map:matchers default="wildcard"/>
      </map:components>
      <!-- =========================== Pipelines
================================= -->
      <map:pipelines>
            <map:component-configurations>
                        <authentication-manager>
                              <handlers>
                                          <handler name="userPortal">
                                                <redirect-to uri="login"/>
                                                <authentication uri
="userLogin"/>
                                          </handler>
                                    </handlers>
                        </authentication-manager>
            </map:component-configurations>
            <map:pipeline>
                  <map:match pattern="login">
                        <map:generate type="xsp" src="login.xsp"/>
                        <map:serialize/>
                  </map:match>
                  <map:match pattern="userLogin">
                        <map:act type="auth-login">
                              <map:parameter name="handler" value
="userPortal"/>
                              <map:parameter name="parameter_userid" value
="{request:user}"/>
                              <map:parameter name="parameter_password"
value="{request:password}"/>
                              <map:redirect-to uri="services"/>
                        </map:act>
                        <!-- authentication failed: Back to login-page -->
                        <map:generate type="xsp" src="login.xsp"/>
                        <map:serialize/>
                  </map:match>
                  <map:match pattern="services">
                        <map:act type="auth-protect">
                              <map:parameter name="handler" value
="userPortal"/>
                              <map:generate type="xsp" src="services.xsp"/>
                              <map:serialize/>
                        </map:act>
                  </map:match>

Greetings
Jonny

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

This electronic message contains information from the mmo2 plc Group which
may be
privileged or confidential. The information is intended to be for the use
of the
individual(s) or entity named above. If you are not the intended recipient
be aware
that any disclosure, copying, distribution or use of the contents of this
information
is prohibited. If you have received this electronic message in error,
please notify
us by telephone or email (to the numbers or address above) immediately.




---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>

Reply via email to