Search found 40 matches

by amrish_deep
Fri Nov 12, 2010 2:10 pm
Forum: JFileUpload
Topic: Java security problem
Replies: 7
Views: 16139

Re: Java security problem

Hi, We have started getting the java error again which says "Java has discovered application components that could indicate security concern". Last time when we got this error, you provided us with updated jar files. We are using the same jar files but cannot understand why this issue has reoccurred...
by amrish_deep
Thu May 06, 2010 6:44 am
Forum: JFileUpload
Topic: Java security problem
Replies: 7
Views: 16139

Re: Java security problem

Hi, After updating my JRE with the latest one (update 20 to be specific), I've started getting a pop-up before the upload applet completely loads. The pop-up says " Java has discovered application components that could indicate a security concern ". It asks me whether to "Block potentially unsafe co...
by amrish_deep
Thu Sep 17, 2009 8:32 am
Forum: JFileUpload
Topic: Upload failed : java.net.SocketException: Connection reset b
Replies: 12
Views: 22927

Re: Upload failed : java.net.SocketException: Connection reset b

No I could not. I got the socket exception when I tested without SSL in production.
Even with SSL port number 443 mentioned in IIS I got the exception.
by amrish_deep
Thu Sep 17, 2009 5:15 am
Forum: JFileUpload
Topic: Upload failed : java.net.SocketException: Connection reset b
Replies: 12
Views: 22927

Re: Upload failed : java.net.SocketException: Connection reset b

The only difference is that production site is secured (i.e. https://www...) while for testing we do not use SSL port.
Firewall won't be an issue I feel as the old production code using the applet works fine. Its the new production code is causing the problem.
by amrish_deep
Wed Sep 16, 2009 11:14 am
Forum: JFileUpload
Topic: Upload failed : java.net.SocketException: Connection reset b
Replies: 12
Views: 22927

Re: Upload failed : java.net.SocketException: Connection reset b

The size is very inconsistent. Sometimes it fails for 25MB, sometimes for 50MB, sometimes 100MB. Upload happens till some extent (say 10% or 20% or 50 or 80%). Even this value is inconsistent. The problem is that same code works at one place (in test server) and throws exception at other place (in p...
by amrish_deep
Wed Sep 16, 2009 10:59 am
Forum: JFileUpload
Topic: Upload failed with java.net.SocketException
Replies: 3
Views: 7360

Re: Upload failed with java.net.SocketException

I put logs in my server side code and came to know that there is a discrepancy between the actual size of the file and the size of the file read using Request.InputStream (My server side code is in C#). The interface though shows the right file size when the upload begins.
by amrish_deep
Fri Sep 04, 2009 6:59 am
Forum: JFileUpload
Topic: Upload failed : java.net.SocketException: Connection reset b
Replies: 12
Views: 22927

Re: Upload failed : java.net.SocketException: Connection reset b

But we were usibg the same request length from long back and we could upload 2GBfiles also.What does this http request length actually mean?
by amrish_deep
Fri Sep 04, 2009 4:47 am
Forum: JFileUpload
Topic: Upload failed : java.net.SocketException: Connection reset b
Replies: 12
Views: 22927

Re: Upload failed : java.net.SocketException: Connection reset b

The httpruntime tag in web.config is <httpRuntime executionTimeout = "43200" maxRequestLength = "2097151" requestLengthDiskThreshold = "4000" /> The IIS setting also has been set for 3600 as time out.Please help me why the socket is getting closed. Is there any other IIS setting on which applet reli...
by amrish_deep
Thu Sep 03, 2009 8:01 am
Forum: JFileUpload
Topic: Upload failed : java.net.SocketException: Connection reset b
Replies: 12
Views: 22927

Re: Upload failed : java.net.SocketException: Connection reset b

My session timeout in application web.config is 2400 minutes. Execution time out in web.config particular to upload is 43200. So time out is not an issue. I have been logging in the code in PUT method.Please check the code below.The logging ends at "proceeding the receive file from client".Then it l...
by amrish_deep
Thu Sep 03, 2009 3:43 am
Forum: JFileUpload
Topic: Upload failed : java.net.SocketException: Connection reset b
Replies: 12
Views: 22927

Upload failed : java.net.SocketException: Connection reset b

I could upload small files with out this error. But could not upload big files (100MB) .My server side log stops at a point when the server is proceeding to receive file from client. After that nothing happens. I am using httpmethod with PUT and my server side code in C#.