Focal Point
[SOLVED] include Collaborative Portals

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7687007096

August 23, 2018, 03:12 AM
JACQUETL
[SOLVED] include Collaborative Portals
Hi

is it possible to call and run existing MRE Collaborative Portals from EDASERVE ?

Something like :
-INCLUDE IBFS/WFC/Repository/VEDIF/PORTALS/Dashboard.prt

Thanks

This message has been edited. Last edited by: FP Mod Chuck,


Webfocus 8.201M.
Windows
InfoAssist +
Chrome, IE, Excel, HTML; PDF, AHTML,GRAPH
August 23, 2018, 08:55 AM
MartinY
Client (MRE) element can call Server (EDASERVE) element but not the opposite. It's related to the IB architecture.


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
August 23, 2018, 01:25 PM
FP Mod Chuck
Jacquetl

A possibility would be to run it via a REST Web Service call, but the Web Services Enablement option is an extra cost feature.


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
August 24, 2018, 06:03 AM
JACQUETL
hi

I found a solution !

On MRE portal, right clic and create alias, exemple : "MY_alias_dashboard"

And on my EDASERVE Fex :


-HTMLFORM BEGIN
<html>
<head>
<script language=javascript>
function lance() {
var url='/ibi_apps/portal/MY_alias_dashboard' ;
// alert(url);
window.open(url,'_new');
}
</script>
</head>
<body onLoad="lance();">
</body>
</html>
-HTMLFORM END




Webfocus 8.201M.
Windows
InfoAssist +
Chrome, IE, Excel, HTML; PDF, AHTML,GRAPH
August 24, 2018, 11:39 AM
Doug
Just curious, Why do you want to run an existing MRE Collaborative Portals from EDASERVE?