× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Hello,

I'm working with WDSCi 5.1 to webfaced an old application with 5250 screens.
I want to use frames in the PageBuilder.jsp so that the common part in
top of our application can stay visible and not reprinted at every
requests.
The issue is that it is not working at the moment.
The first frame is printed nicely but the application frame is not
printed and
I have the following message :
Error 500: Server caught unhandled exception from servlet
[ScreenBuilderServlet]: null


Here is my new PageBuilder.jsp
__________________________________________________________________________
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
  "<http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd>">
<html>
<head>
  <title>MyApp</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <frameset rows="68,*" frameborder="no" border="0">
    <frame src="styles/chrome/Menu.jsp" name="menu">
    <frame src="styles/chrome/Page.jsp" name="page">
  </frameset>
</html>
__________________________________________________________________________

And here is my Page.jsp (where comes the issue)
__________________________________________________________________________
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
  "<http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd>">
<%@ page contentType="text/html; charset=UTF-8" %>
<html>
<body>
<table>
  <tr>
    <td><jsp:include page="/WFScreenBuilder" /></td>
  </tr>
</table>
</body>
</html>
__________________________________________________________________________


As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.