Configure web applications for third-party portal
What do you need to configure for applications you want to embed in a third-party portal?
One of the ways of deploying Genero applications is using a third-party application portal to embed your Genero web applications inside the portal functionality. Here the user has a list of applications to choose from. The user can select an application to run (only one application may be active at a time), and the application is rendered in the portal.
Your Genero applications will be executed in the Genero Browser Client (GBC). The GBC uses an inline frame (iframe) that allows it to be embedded within the portal. For more information on how the GBC runs applications within a portal, see Genero Browser Client User Guide.
The configuration you need to render applications in a portal is different to a standard application configuration. It takes the form of a main application and may include sibling applications. Follow the steps to configure your applications for a portal, and see the sample configuration in Embedded web applications.
Embedded web applications
<?xml version="1.0" encoding="UTF-8"?>
<APPLICATION Parent="defaultgwc" SinglePageApplications="TRUE"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://www.4js.com/ns/gas/5.00/cfextwa.xsd">
<EXECUTION>
<PATH>C:\Users\fg\gas3694</PATH>
<MODULE>main</MODULE>
<APPLICATIONS>
<APPLICATION Id="sib1">
<PATH>C:\Users\fg\gas3694</PATH>
<MODULE>sibling1</MODULE>
</APPLICATION>
<APPLICATION Id="sib2">
<PATH>C:\Users\fg\gas3694</PATH>
<MODULE>sibling2</MODULE>
</APPLICATION>
</APPLICATIONS>
</EXECUTION>
<AUTO_LOGOUT Using="cpn.wa.autologout"/>
<UA_OUTPUT>
<PROXY>$(res.uaproxy.cmd)</PROXY>
<PUBLIC_IMAGEPATH>$(res.public.resources)</PUBLIC_IMAGEPATH>
<GBC>gwc-dev</GBC>
<TIMEOUT> Using="cpn.wa.timeout"</TIMEOUT>
</UA_OUTPUT>
<END_URL>http://www.4js.com</END_URL>
</APPLICATION>