Hi, When I try the url, which I pass to the constructor of PostMethod from a browser I'm not getting 404. Also the same url was working with MultipartRequestEntity. When I was in the intranet, I was able to upload files upto 63Mb, with this method. But when I tried, a 240MB I started getting Sockettimeout exception, as well websphere reported some threads are hung. The same issue happened when I tried with a 1K file through VPN. As a note, even though the code snippet which I posted, was hard coding the file, actually the file getting uploaded using struts 1.1 file upload, and the input stream from the upload form is passsed instead of the file. You thoughts please.. -A
olegk wrote: > > On Sun, 2008-09-21 at 14:11 -0700, ANEESHCH wrote: >> Hi, >> I tried the following options so far. >> 1) Based on the unbuffered post, used >> httppost.setRequestEntity(new InputStreamRequestEntity( >> new FileInputStream(file), file.length())); >> >> It gave me the error, org.apache.commons.httpclient.ProtocolException: >> Unbuffered entity enclosing request can not be repeated. in the system >> error >> file. >> >> 2) Then I tried using FileRequestEntity, to make sure that content can be >> recreated, as well as for marking the entity as repeatable >> No error was reported any where, but the file was not uploaded to the >> remote >> server. >> Httpstatus code 404 was returned by the excecutemethod(); >> > > Status code 404 means the server has not found anything matching the > Request-URI. > > This problem has nothing to do with HttpClient > > Oleg > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Max-file-size-which-can-be-transmitted-using-HttPClient-tp19585600p19598823.html Sent from the HttpClient-User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
