Hello,
In my Custom page, I search cases availalbe in a SECOND BONITA SERVER.
Then I display the case, and I want to add a link to see the case overview. I calculate the URL (thank to the Bonita Portal URL documentation). Here is the link calculated
http://localhost:9080/bonita/portal/form/processInstance/679536
1/ When I copy / Paste the URL in a new tab ==> Perfect, it display the overview
2/. I created in my page a link <a href="{{ctrl.casegui.showcaseurl}}" target="top">Open in a new frame</a>
==> Perfect, it open a new tab and display the overview
3/ I want to include this URL in a iframe
<iframe src="{{ctrl.casegui.showcaseurl}}" width="100%" height="100%" frameborder="0" id="icaseoverview" onLoad="onLoadIFrame()"></iframe>
Note; the onloadIFrame recalcultate the frame size
I got a error 404
HAR is here:https://www.dropbox.com/s/0bbaijl7iq232q3/CaseOverviewByThePortal.har?dl=0
I deactived on the second server the CSRF mechnanism (https://documentation.bonitasoft.com/bonita/7.11/csrf-security#toc3) so the second server should accept to display the URL, isn't?
What else can block the display?
Thanks