Re: FileUpload: Failure to parse non-ascii character sets

2005-06-20 Thread Ronald Klop
in the current builds of commons-fileupload-1.1-dev.jar? Post a dump of the headers going over the wire. (See ngrep, ethereal or another network sniffer.) -- Ronald Klop Amsterdam, The Netherlands - To unsubscribe, e-mail

Re: FileUpload: Failure to parse non-ascii character sets

2005-06-20 Thread Ronald Klop
.) A multipart/form-data post contains more headers in the body in the request. Those are the interesting ones. It's best seen with no file or a very small file upload. Ronald. -- Ronald Klop Amsterdam, The Netherlands

Re: FileUpload: Failure to parse non-ascii character sets

2005-06-20 Thread Ronald Klop
network sniffer.) A multipart/form-data post contains more headers in the body in the request. Those are the interesting ones. It's best seen with no file or a very small file upload. Did you try FileItem.getString(String encoding)? getString(UTF-8) in this case. -- Ronald Klop Amsterdam

Re: [Codec?] calculate a fingerprint while reading InputStream ?

2005-06-15 Thread Ronald Klop
classes out there, but mostly in unknown (for me) packages. I wish I could use jakarta tools, since I'm using quite of them already. See java.security.DigestInputStream. Ronald. -- Ronald Klop Amsterdam, The Netherlands

Re: FileUpload: File name in Japanese characters

2005-06-10 Thread Ronald Klop
. Actually I am appending some unique id to File Name and then saving on disk. I guess there is problem when I am appending the id to file name. Is anybody aware of solution to this problem? Regards, Hitesh Chandmal Jodhavat -- Ronald Klop Amsterdam, The Netherlands

Re: [collections] ConcurentModificationException-free iterator ?

2005-06-10 Thread Ronald Klop
PROTECTED] -- Ronald Klop Amsterdam, The Netherlands - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: httpclient: HTTP/1.1 501 Not Implemented

2005-06-05 Thread Ronald Klop
()); } I am getting this message: Method failed: HTTP/1.1 501 Not Implemented Is there any workaround? This is the reply of the server. What method are you executing? Ronald. -- Ronald Klop Amsterdam, The Netherlands

[fileupload] DefaultFileItem.write(File f) ignores exception. why?

2005-06-02 Thread Ronald Klop
Hello, DefaultFileItem.write(File f) ignores the IOException of the close() methods of the Streams. Why? If there is an error flushing and closing the streams wouldn't you like to know this? Ronald. -- Ronald Klop Amsterdam, The Netherlands