Hi,
I am currently evaluating JFileUpload applet for my ASP.Net Application. I am using the PUT method by specifying the following parameter values for the applet
<param name="param5" value="httpmethod" />
<param name="value5" value="put" />
I also specify a valid url which contains the upload handler scripts. I have also enabled the "PUT" verb in the websites configuration setting.
Everything work fine when I am debugging the application. But when I deploy the same on the IIS and try running directly through the web server, I get the following error message. Can you please help me get rid of this error message and make the applet work on deployment on the IIS?
Upload started ...Upload failed : java.net.SocketException: Software caused connection abort: socket write error
Deployment fails on IIS
Re: Deployment fails on IISI got it working! the issue was that I had overlooked the inclusion of 'PUT" verb in the IIS Config settings. After I added it, it started working as usual.
Thanks |