This page (revision-4) was last changed on 26-Nov-2021 10:22 by JMyers

This page was created on 26-Nov-2021 10:22 by JMyers

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
4 26-Nov-2021 10:22 1 KB JMyers to previous
3 26-Nov-2021 10:22 1 KB JMyers to previous | to last
2 26-Nov-2021 10:22 1 KB JMyers to previous | to last
1 26-Nov-2021 10:22 1 KB JMyers to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 6 changed one line
The public form must be embedded inside a .jsp page, with arguments PUBLIC=true and FORM=[[insert form name here].\\ \\
The public form must be embedded inside a .jsp page, with arguments PUBLIC=true and FORM=~[insert form name here].\\ \\
At line 12 changed 6 lines
Retrieving Web Resources on the Server
To retrieve web resources such as page images, we need to include the dynamic web resource path via JSP. To do this, we include the following JSP statements in the external page:
• <%@ page import="com.highlinecorp.web.*,com.highlinecorp.schema.*" %>
• <% String resourcePath = Settings.getDynamicWebResourcePath()+"/images/PublicForms/EmbeddedDemo/";%>
The second statement assigns the resource path of all external page images on the server to the Java variable, resourcePath. Each image src in the external page will need to be linked via JSP to this resource path.
For example: <a><img src="<%=resourcePath%>bnav-sit_off.gif" alt="Site Map" id="bnav-sit" height="13" width="55"></a>
!!Retrieving Web Resources on the Server
To retrieve web resources such as page images, we need to include the dynamic web resource path via JSP. To do this, we include the following JSP statements in the external page:\\ \\
*<%@ page import="com.highlinecorp.web.*,com.highlinecorp.schema.*" %>
*<% String resourcePath = Settings.getDynamicWebResourcePath()+"/images/PublicForms/EmbeddedDemo/";%>\\ \\
The second statement assigns the resource path of all external page images on the server to the Java variable, resourcePath. Each image src in the external page will need to be linked via JSP to this resource path.\\ \\
For example:\\
<a><img src="<%=resourcePath%>bnav-sit_off.gif" alt="Site Map" id="bnav-sit" height="13" width="55"></a>