Re: catalina won't compile on JDK 1.3.1

2002-11-10 Thread Remy Maucherat
Henri Gomez wrote: In o.a.c.loader.WebAppClassLoader.java, realFile.toURI() isn't known by SDK 1.3.1 .. I didn't pay attention when I wrote the code. This method is extremely useful for properly URL encoding the result. It will have to be rewritten with 1.3 compatibility (I suppose the code

catalina won't compile on JDK 1.3.1

2002-11-08 Thread Henri Gomez
In o.a.c.loader.WebAppClassLoader.java, realFile.toURI() isn't known by SDK 1.3.1 .. /** * Get URL. */ protected URL getURI(File file) throws MalformedURLException { File realFile = file; try { realFile = realFile.getCanonicalFile();