Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Password Verification without Logging in

Status
Not open for further replies.

papalpha

Programmer
Jul 31, 2002
26
US
I have a student using a form and entering information. I have in instructor looking over his/her shoulder. When the instructor is satisfied with the student’s work, he/she is to enter his/her username and password to approve it to the system. Is there a way in forms or PL/SQL that I can verify that the username & password are valid for the instance without them actually logging in? I know I can verify the username against DBA_USERS, but the password is encrypted and the typed in will not compare with it.
 
If you want to compare against the current username and password you can read them using GET_APPLICATION_PROPERTY.
 
No, I do not want to compare against the current user. The instructor will not be logged in, just grading the work and proving who he/she is before it accepts the grade.
 
I don't want the instructor to actually create another session or even log in. I just want to verify that his username and password are valid, then return to the students screen so he/she can continue.
 
Another option is to create dblink using instructors username/password and make an attempt to get some data from it. In any case without creating a new session you can not check a password.

Regards, Dima
 
I tried that, it let me create a link with a valid userid and invalid password. It must not check until the dlink is actually used.
Thanks for trying to help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top