> I found problem that tomcat 3.2-b8 doesn't work on Kaffe VM.
> (probably 3.2 final is same)
> Error occurs at read() method in java.io.BufferedInputStream.
> # Maybe it's Kaffe VM's problem.(which has problem?)
Kaffe developer resolved this problem in Kaffe VM.
We won't need following patch for next Kaffe release.
*** RecycleBufferedInputStream.java.org Sat Dec 9 02:35:35 2000
--- RecycleBufferedInputStream.java Sat Dec 9 02:35:57 2000
***************
*** 73,83 ****
--- 73,85 ----
public void setInputStream( InputStream is ) {
this.count=0;
this.in=is;
+ this.pos=0;
}
public void recycle() {
this.in=null;
this.count=0;
+ this.pos=0;
}
-----------
Takashi Okamoto