as it turns out, this is a problem with the way that WLS was handling chunked transfers. according to change request #084847, "For chunked transfer, WebLogic Server was including a hexadecimal number which other servlet engines used to ignore. This has been fixed [in the currently not released WLS 6.1 sp 4]." there was no indication of when the new service pack would be released or when this fix would make it to WLS 7.0.
-- ndele > -----Original Message----- > From: dovan nguyen [mailto:dovan_nguyen@;yahoo.com] > Sent: Wednesday, October 16, 2002 11:02 AM > To: Slide Users Mailing List > Subject: Re: putMethod adds some junks characters > > > Mike, > > I am suspecting the same. > > Dovan > > --- Michael Smith <[EMAIL PROTECTED]> wrote: > > dovan nguyen wrote: > > > > > > Hi Mike, Ndele, > > > > > > Below is a piece of codes i use to test the > > servlet: > > > > > > try > > > { > > > OutputStream os = new BufferedOutputStream(new > > > FileOutputStream("C:\\tmp\\WL-out.txt")); > > > > > > InputStream is = req.getInputStream(); > > > > > > int b; > > > > > > while((b=is.read())!= -1) > > > os.write(b); > > > > > > is.close(); > > > os.close(); > > > } > > > catch(Exception e) > > > { > > > > > > } > > > > > > and it writes out fine WITHOUT any junk! > > > > > > Regards, > > > Dovan > > > > > > Are you sure you ran this test servlet using a > > client which was sending > > a chunked PUT? I suggest you try using a network > > packet tracer to figure > > out what is actually being sent over the wire. > > > > There's no way for slide to invent the chunk > > headers, so SOMEHOW WL is > > passing them through to the slide webdav servlet. > > > > Michael > > > > -- > > To unsubscribe, e-mail: > > <mailto:slide-user-unsubscribe@;jakarta.apache.org> > > For additional commands, e-mail: > > <mailto:slide-user-help@;jakarta.apache.org> > > > > > __________________________________________________ > Do you Yahoo!? > Faith Hill - Exclusive Performances, Videos & More > http://faith.yahoo.com > > -- > To unsubscribe, e-mail: <mailto:slide-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:slide-user-help@;jakarta.apache.org> -- To unsubscribe, e-mail: <mailto:slide-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:slide-user-help@;jakarta.apache.org>
