Re: I want login in a page but using a user's name and pass obtained from a BD

2006-03-21 Thread Simon De Uvarow
i put the variable into a HTTP Authorization Manager .. but it doesn´t work ... 2006/3/21, Simon De Uvarow [EMAIL PROTECTED]: hi, I want login in a page but using a user's name and pass obtained from a DB I did the following thing: a JDBC petition: select name from usuarios order by rand()

I want login in a page but using a user's name and pass obtained from a BD

2006-03-21 Thread Simon De Uvarow
hi, I want login in a page but using a user's name and pass obtained from a DB I did the following thing: a JDBC petition: select name from usuarios order by rand() limit 1; a RegEx: get the name and put it into the variable usuarios now i should code the variable into base64 and put it in all

Re: I want login in a page but using a user's name and pass obtained from a BD

2006-03-21 Thread Simon
thanks .. i am writing a encode64 sampler that gets a name and a pass and returns the result encoded encode(name:passw) but i am having problems with the gui ... :P .. in my case i have a wrote a web system whit differents technologies to prub diferents tools. for loggin i send an

Re: I want login in a page but using a user's name and pass obtained from a BD

2006-03-21 Thread sebb
HTTP Auth Manager is used for login dialog boxes as generated by browsers e.g. for proxies. Login pages are normally forms, which you then POST back to the server. In which case you need to find out the field names in the form, and add the parameters to the HTTP request. S. On 21/03/06, Simon

Re: I want login in a page but using a user's name and pass obtained from a BD

2006-03-21 Thread Simon
ok .. it finaly works ... excuse me for the grammar mistakes ... (prub = try, whit = with, ...) Simon 2006/3/21, Simon [EMAIL PROTECTED]: thanks .. i am writing a encode64 sampler that gets a name and a pass and returns the result encoded encode(name:passw) but i am having problems with