Question
Covance
US
Last activity: 14 Mar 2019 10:44 EDT
Display image on customized Log out screen
Hi All,
I am looking to display image on a customized log off screen. Modified the HTML rule, Web-Session-Return in application specific ruleset and tried the belop options
1. Added te below code in the HTML
<img src="/webwb/images/Image.png" width="460" height="345">
2. Created a section with the image and included the same in the HTML
Both the options do not see to be working.
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Accepted Solution
Covance
US
Thanks Marissa for sharing the suport articles, especially the Custom Logoff screen image does not appear in Pega 7.1.7.
After modifying the logincacheManifest html rule i was able to display the the client logo in the logoff screen.
Tech Mahindra
CA
Hi ,
It worked for me.. just removed slash befor webwb
<img src="webwb/images/Image.png" width="460" height="345">
Pegasystems Inc.
US
Great! Thanks.
Pegasystems Inc.
US
I found out the below two pdn links. They may provide you some help.
https://community.pega.com/knowledgebase/articles/how-customize-log-out-screen-61-sp2
Covance
US
Tried the options and it did not work.
Pegasystems Inc.
US
Hi @RashdoonJ,
I did a search in our Support Article database and was able to find the following Support Articles that may help you. Please check them out!
Custom logo does not display in the logoff screen
Custom Logoff screen image does not appear in Pega 7.1.7
Log out screen is not displayed
The logoff screen Image is missing when logging out through SSO
Logoff screen Image is missing when logging out through SSO
Custom login session screen images or css file does not download
Accepted Solution
Covance
US
Thanks Marissa for sharing the suport articles, especially the Custom Logoff screen image does not appear in Pega 7.1.7.
After modifying the logincacheManifest html rule i was able to display the the client logo in the logoff screen.
Pegasystems Inc.
US
Awesome! I'm so glad that that worked for you! :)
Covance
US
Hi Marissa,
Do you have any suggesstion on why this does not for a custom servlet whish has no login screen and the requestor is silently logged in.
Pegasystems Inc.
US
No login screen? Are you describing an SSO setup?
Covance
US
It is not an SSO setup. The users would click on a url which will log them to the application through they can submit an application. I tried calling an HTML rule with the below tags on the load of the application
<html manifest='<%= cacheManifestURL %>'>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-STORE">
I am building cache manifest URL by
String baseURL = com.pega.pegarules.pub.util.StringUtils.urlCrossScriptingFilter(tools.findPage("pxThread").getString("pxReqURI")); String cacheManifestURL = baseURL + "?pyActivity=Code-Security.pzGenerateLoginCacheManifest";
Per the fiddler trace see that images are getting cached but on timeout screen there are not rendered. The fiddler trace return 304 code with Cache-Control: no-cache. Let me know if it helps
Covance
US
To add, did notice that the activity Code-Security pzGenerateLoginCacheManifest, which calls the loginCacheManifest HTMLS file is not invoked for the custom servlet.