Re: xsp problem with authentication context

2002-10-02 Thread Antonio Gallardo Rivera
I had the answer. It is posible. I made a to work. It takes me like 3 days ans his nights. But it works now! I will check the lastest CVS and send you the files directly as soon as I can . I am happy that someone will use this code. :) It works with Cocoon 2.1-CVS. edition. Regards, Antonio

Re: xsp problem with authentication context

2002-10-02 Thread Barbara Post
t; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Atlanoff" <[EMAIL PROTECTED]> Sent: Wednesday, October 02, 2002 1:29 PM Subject: Re: xsp problem with authentication context > I' am sorry but the action stuff doesn't say anything to me. > I have little e

Re: xsp problem with authentication context

2002-10-02 Thread Katzigas Dimitris
Katzigas Dimitris" <[EMAIL PROTECTED]> Sent: Wednesday, October 02, 2002 2:06 PM Subject: Re: xsp problem with authentication context > Hello Dimitris, > -- > How about another way to authorize via actions: > > ///login-action > > login = (String)request.

Re: xsp problem with authentication context

2002-10-02 Thread Atlanoff
Hello Dimitris, -- How about another way to authorize via actions: ///login-action login = (String)request.getParameter("login"); password = (String)request.getParameter("password"); String sql = "begin loginproc('" + login + "', '" + password + "'); end;"; ... //my s

xsp problem with authentication context

2002-10-02 Thread Katzigas Dimitris
Hi there, I want to get the username from the authentication session with which i authenticated and use it in a sql query. I manage to get the data from the authentication context with some code that i added to my xsp file that i read in a Antonio's Gallardo Rivera posting. My xsp file is: ht