This is a multi-part message in MIME format.
--
[ Picked text/plain from multipart/alternative ]
I have a simple JSP file mm1.jsp that uses a bean (bean is in websphere
classpath)
<html>
<head> <title> Dictionary Select </title> </head>
<body>
<jsp:useBean id="abean" class="MRCPS.MRC007" />
<h2> Dictionary Selection </h2>
</body>
</html>
This file compiles and runs OK in Tomcat (on PC) but got this strange error in
WebSphere:
Message: Server caught unhandled exception from servlet [JSP 1.0 Processor]:
Compilation of "mm1.jsp" failed:
/QIBM/UserData/WebASAdv/default/temp/default_host/mrcps/_mm1_2E_jsp_jsp_1.java:20:
'}' expected. static StringBuffer[] _jspx_html_data = null; ^ 1 error
If I remove the useBean line then it runs OK.
<html>
<head> <title> Dictionary Select </title> </head>
<body>
<h2> Dictionary Selection </h2>
</body>
</html