Support Article
Pega Web Mashup does not load on enabling URL Encryption
SA-52573
Summary
Pega Web Mashup does not load when enabling URL Encryption.
Error Messages
Not Applicable.
Steps to Reproduce
- Launch the application
- Enable URL Encryption in Pega Web Mashup with the following system settings:
<env name="initialization/urlencryption" value="true"/>
<env name="initialization/SubmitObfuscatedURL" value="required"/>
Mashup code sets encryption on:
pega.web.config.encrypt = true;
Root Cause
The calls to pzIncludeMashupScripts cannot be processed when SubmitObfuscatedURL is set to 'requires'.
Resolution
Perform the following local-change:Change the below settings:
System Security Setting:
<env name="initialization/SubmitObfuscatedURL" value="optional"/>
Mashup Scripting:
pega.web.config.encrypt = true;
pega.web.config.cmd.pegaAction={"httpMethod":"POST"};
Published July 23, 2018 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.