Help required wrt to porting from jdk1.3 to jdk1.4
My project requirement currently needs to use jdk1.4. i havesome code which was earlier coded in jdk1.3 in some jar files. They are currently getting the following error while trying to use the classes from the jar files.
<%@ page language="java" import="CatalogSearchRepository" %>
Error:
[08/11/2005 17:03:20:792] (ERROR) ajp12: Servlet Error: OracleJSP: oracle.jsp.pr
ovider.JspCompileException: <H3>Errors compiling:/prod/appsol1a/comn/_pages/_oa_
_html/_jsp/_por/_catalog/_XXAcceptanceHome.java</H3><TABLE BORDER=1 WIDTH=100%><
TR><TH ALIGN=CENTER>Line #</TH><TH ALIGN=CENTER>Error</TH></TR><TR><TD WIDTH=7%
VALIGN=TOP><P ALIGN=CENTER>15</TD><TD> '.' expected import CatalogSearchReposito
ry;</TD></TR></TABLE>
[08/11/2005 17:03:20:792] (ERROR) an error returned handling request via protoco
l "ajpv12"
[08/11/2005 17:03:20:793] (ERROR) balance: 3373 internal servlet error in server
[08/11/2005 17:03:20:793] (ERROR) an error returned handling request via protoco
l "balance"
In java 1.4
import SimpleName;
is no longer legal. Nor is the syntax
import ClassInUnnamedNamespace.Nested;
which would import a nested class from the unnamed namespace. To fix such problems in your code, move all of the classes from the unnamed namespace into a named namespace.
Is there any work around for the same other can changing the files(present in various jar files) to have the same package structure as required?

