Discussion
NIIT Technologies Limited
AU
Last activity: 20 Sep 2017 11:23 EDT
Forgot password functionality in Pega 7
How to implement forgot password functionality in Pega 7?
I found an article for PRPC 6.1SP2.
https://pdn.pega.com/connect/pega-exchange/pega-password-control-for-prpc-61-sp2
Is it supported for Pega 7 as well?
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
PEG
IN
I don't think it will support. It is such a old version.
NIIT Technologies Limited
AU
Thanks gollg.
Do we have similar feature implemented for 71?
Pegasystems Inc.
US
This is currenly not a Pega 7 feature. Please share any more specific requirements you have in this area for future consideration.
Capgemini
IN
Hi,
I have implemented forgot password functionality in Pega 7.
Following are the steps that were followed-
Create a Service HTTP rule that accepts HTML post data as input (which is typically the username).Configure your service activty to set a custom password or random password.
Next insert a link in Web-Login to open a static HTML (not Rule-Obj-HTML) on click of that link.
In the static HTML configure it to be submitted to the Service HTTP URL.
As per response set from the Service HTTP rule you can display screen if password reset is success. (Before displaying screen you will most likely want to send a mail to the user which can be done in the service activity rule).
Use DSS combined with if then else to dynamically determine the URL for the various environments.
Let me know if you need more information on this.
Capgemini Nederland B.V.
NL
Hi Somnath,
Could you please share sample code to achieve below two steps:
1. To insert a link in Web-Login to open a static HTML (not Rule-Obj-HTML) on click of that link.
2. In the static HTML configure it to be submitted to the Service HTTP URL.
Kind Regards,
Sunil
NIIT Technologies Limited
AU
Thank you Somanath. I will try this.
If possible, please share the code if you have implemented this as a component.
NIIT Technologies Limited
AU
Hi David,
One of our client was asking for it. I don't have any specific requirements yet as project is still in inception phase.
But I think Forgot password feature is good to have OOTB.
Murex
LB
Hello,
Create a Service HTTP rule that accepts HTML post data as input (which is typically the username).Configure your service activty to set a custom password or random password.
Next insert a link in Web-Login to open a static HTML (not Rule-Obj-HTML) on click of that link.
Please can you elaborate more on how to implement such steps? I created the Service HTTP for now.