Dear experts,
I have designed an APEX application, with custom authentication scheme. It has multiple pages. After one user logs in to the application, he fills his questionnaire and wants to send the URL to evaluator, with some technical id.
URL looks something like this: https://www.aaaaa.com/ords/f?p=APPID:PAGEID:SESSION::NO:RP,27:EVAL_ID:126676
Any one having this URL can access this page. Evaluator should be able to access this same page (questionnaire) through that URL and save his comments / corrections. Content to be loaded on this page will be decided by the attribute EVAL_ID. I should check if this is EVAL_ID is valid or not. If valid, show the page / questions based on the EVAL_ID. Most important thing is that evaluator should not be redirected to login page. He should see the questionnaire directly.
In other terms, I need to access the same page with custom auth scheme (user id / password) and with EVAL_ID. Any suggestions or guidance is highly appreciate. Thank you.