Wednesday, March 16, 2016

In B2B store, To send a temporary password instead of validation code in websphere commerce

In B2B flow, by default the validation code enabled in websphere commerce.
When we reset the password,it will send you the validation code which will be active in 30mins. If you are not using with in that time then we have to generate new one again.

If we want to send the temporary password instead of validation code, then we have to update the following entry in database.

update cmdreg
set properties='validationCode=false'
where interfacename ='com.ibm.commerce.security.commands.ResetPasswordGuestCmd';

update cmdreg set
properties ='validationCode=false'
where interfacename ='com.ibm.commerce.security.commands.ResetPasswordAdministratorCmd';

update cmdreg set
properties ='validationCode=false'
where interfacename ='com.ibm.commerce.security.commands.ResetPasswordCmd';

If you want the validation code logic back update the validationCode=true in that property field.

No comments:

Post a Comment