Discussion
Incessant Technologies
IN
Last activity: 15 Jun 2015 13:53 EDT
IAC Gadget not displaying in HTML Page
Hi,
I have created a Gadget from the Gateway Console, while previewing I am able to see the process.
But when I include the gadget in a HTML file, the gadget doesnt display.
Any help or any approach how to debug would really help.
Regards,
Nishant
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Pegasystems Inc.
GB
Hello Nishant,
Thank you for your query. It has been passed to the appropriate members of our support team. Someone will contact you.
Regards,
Andrew Fontenelle
PDN Support Team
Accenture
IN
Hi Nishant,
What error ur getting in the Screen? Did u try with other Options which are there in the IAC - Like displaying harness, create work object? System Name, Application name and Application username and password...those things also need to verify once.
Thanks,
Padmanabhan K
Incessant Technologies
IN
Hi Padmanabhan,
There is no error. The gadget doesnt load up. And we are using the option create work object, the parameters are set properly.
The Preview functionality is working fine but when we stand alone launch the HTML file, it doesnt work.
So is there any way of debugging.
Regards,
Nishant
Patient Advocate Foundation
US
Uncomment the line below in ur HTML and see how many steps are you able to pass through.
<!--<script src="PegaInternetApplicationComposerLog.js"></script>-->
Incessant Technologies
IN
Thanks sakthi, but that didnt provide much information.
Regards,
Nishant
Pegasystems Inc.
US
Hi,
Please try this simple example to verify you environment / browser is correctly configured: https://pdn.pega.com/internet-application-composer/quick-start-embedding-your-pega-application-in-a-webpage
Patient Advocate Foundation
US
Ok,
1. Make sure you are able to perform the GET/POST request from your browser using the HTML you are trying to run, You can use UI tools(Fiddler/Developer tools in browser) to trace your requests.
2. After enabling IAC log - You should be able to see atleast 5 steps, like Gadget initialization, and the full URL to get the PRPC resources.
3. Add the below in your prgateway/WEB-INF/web.xml, this will write all the connectivity details to the mentioned path.
<init-param>
<param-name>GatewayLogFile</param-name>
<param-value>C:/Gateway</param-value>
</init-param>
4. Check if this is browser dependent issue, there are issues with IE browser, You may need to configure the reverse proxy to make it work, if your system violates the same origin policy-refer the URL( https://pdn.pega.com/internet-application-composer/setting-the-gatewayurl-configuration-parameter ).