>> xmlns:xsp-session="http://apache.org/xsp/session/2.0"
>There is no difference as long as the namespace URI is the same. The
>namespace prefix is just a short name for the namespace URI.
That's what I assumed at first, but as one example showed otherwise.
** How about the necessity of create-session="true" ?
** How can I use the session- or request-object within a <xsp:logic>
Like in :
<xsp:logic>
boolean isTrue() {
boolean result = false;
String language = (String)<session:get-attribute
name="somename"/>;
or (String) session.getAttribute("somename");
return ;
}
<xsp:logic>
This give me a compilation-error because no object session can be found.
This method gets compiled as class-method but as session is not defined globally, this
doesn't get compiled.
---------------------------------------------------------------------
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]>