Hi,
I load multiple/simultaneous IFRAMEs which contain legacy application logic (simple JSP without any JS). I
use the HTMLPane component to do so but there seems to be a conccurency issue between the IFRAMEs when loading.
When I look at Firebug's Net/HTML console, I see that both IFRAME's have been loaded using the same URL,
although my ISC logging shows that my 2 HTMLPane components have been created using 2 distinct URLs ...
Here's the code extract I use to create my 2 HTMLPane components :
Here's the Log.logInfo output from the ISC console:
Here's the output from Firebug's Net/HTML console:
Could it be that there's some sort of caching in HTMLPane because the JSP page is the same in both
cases, although the query string is different ?
Anything else I need to do in order to have multiple HTMLPane components work simultaneously ?
Thanking you in advance for your help.
Kind regards,
I load multiple/simultaneous IFRAMEs which contain legacy application logic (simple JSP without any JS). I
use the HTMLPane component to do so but there seems to be a conccurency issue between the IFRAMEs when loading.
When I look at Firebug's Net/HTML console, I see that both IFRAME's have been loaded using the same URL,
although my ISC logging shows that my 2 HTMLPane components have been created using 2 distinct URLs ...
Here's the code extract I use to create my 2 HTMLPane components :
Code:
var baseUrl = this.jspPage + '?tenant=' + MeiContext.tenantName + '&queryId=' + this.queryId; var id = this.getHtmlPaneId(); this.cube = HTMLPane.create ({ ID : id, width : '100%', height : '100%', autoDraw : true, showCustomScrollbars : false, httpMethod : 'GET', contentsType : 'page', contentsURL : baseUrl }); Log.logInfo('MEICubeWrapper HTMLPane.create() - ID: ' + this.ID + ' - contentsURL: ' + this.cube.contentsURL);
Code:
15:50:09.766:XRP2:INFO:Log:MEICubeWrapper HTMLPane.create() - ID: isc_DirectSalesForecastPlan_0 - contentsURL: jpivot-mei-navi.jsp?tenant=Acme&queryId=cube_0_0 15:50:09.886:XRP3:INFO:Log:MEICubeWrapper HTMLPane.create() - ID: isc_IndirectSalesForecastPlan_0 - contentsURL: jpivot-mei-navi.jsp?tenant=Acme&queryId=cube_1_0
Code:
http://127.0.0.1:8080/MeiTpm/jpivot-mei-navi.jsp?tenant=Acme&queryId=cube_0_0 http://127.0.0.1:8080/MeiTpm/jpivot-mei-navi.jsp?tenant=Acme&queryId=cube_0_0
cases, although the query string is different ?
Anything else I need to do in order to have multiple HTMLPane components work simultaneously ?
Thanking you in advance for your help.
Kind regards,
Comment