Question
TCS
IN
Last activity: 5 Dec 2019 6:58 EST
Data Page run in new server does not return results.
We have created a new server for hosting our application (version-7.2). When running a data page in new environment, a pop-up blocker for Insecure content comes which prevents results from loading. Attached is the message.
If Load unsafe scripts is selected, the https in url gets converted to http and further run command will not display the content. The screenshot of error in Devtools is attached.
Is this related to any server configuration miss?
Thanks in advance,
Aparna
***Moderator Edit-Vidyaranjan: Updated Platform Capability***
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Pegasystems Inc.
FR
Hello,
Do you have the same issue for all data pages or is it just this one? Can you reduce the number of results back to identify which part of the content is responsible for this maybe.
TCS
IN
Hello Marc,
I face this with every datapage, be it sourced from data transform or report definition. The source gives the result when triggered independently. I tried to trace the smallest set results datapage. Did not get any warnings or error in tracer. The run window shows datapage was executed using: Standard Thread on RunRecordPrimaryPage page. but results are not displayed, nor the source invoked as per tracer.
BPM Company
NL
Do you have the same issue with running a data transform or activities?
TCS
IN
No issues with any activity/data transform. Observed this behaviour only for data pages.
Pegasystems Inc.
IN
Hi,
Did you check pega rules logs,Is there any error?
Thanks,
Abhinav
TCS
IN
Hi Abhinav,
No error reported in the logs.
Epam
IN
Hi,
could you please check whether below code is present in your web.xml.
This will ensure that your application will run in https protocol.
<security-constraint>
<web-resource-collection>
<web-resource-name>PRBasic</web-resource-name>
<url-pattern>/PRServlet</url-pattern>
<url-pattern>/PRServlet/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<user-data-constraint>
<description>SSL required</description>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
Thanks,
Gopi
TCS
IN
Hi Gopinath,
Thanks for your reply. I tried this but it didnot work. We found out this has been set from load balancer level/server level itself. Could you suggest some ways to override? We are using tomcat server.