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:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> 


__________________________________________________
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos & More
http://faith.yahoo.com

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to