[EMAIL PROTECTED] wrote:
Hi,
I'm checking in the <xsp:logic> part if a <xsp-session is valid. If yes
load this, else load that. Is there a way to do some kind of that.
I'm trying to restrict a page. Or is there a other approach.
If you only want to restrict a page, why not simply setting up
an authentication framework? I did it with container based
authentication, but never tried with cocoon-authentication.
If you want to differently on different restricted pages, my approach
does not work well. Maybe this can be done much better with
cocoon authentication.
By the way, does it make sense to split this task as follows:
use the container for authentication
use cocoon for authorisation
By this i could build up very sophisticated authorisation
schemes while letting the container bother with the login...
If this makes sense i would be interested how this could be
set up.
regards, hussayn
My non functioning approach:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsp:page language="java"
xmlns:xsp="http://apache.org/xsp"
xmlns:xsp-session="http://apache.org/xsp/session/2.0">
<html>
<head>
<title>
Portal
</title>
<xsp:logic>
if(<xsp-session:get-attribute name="userid"/> != null)
{
</head>
<body bottomMargin="0" leftMargin="0" ...
...
}
else
{
<meta http-equiv="refresh" content="5;url=login"/>
</head>
<body>
<p>
Login failed
</p>
</body>
}
</xsp:logic>
</html>
</xsp:page>
Thanks
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]>
---------------------------------------------------------------------
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]>