Page 1 of 1

Applet handlers not working in IIS7.5 Integrated mode

Posted: Tue Jun 17, 2014 9:12 am
by ajishapj
Hi
we are using JfileUpload control in our Asp.net application
Application is hosted in IIS 7.5 environment which was working in classic mode of the app pool
Now we have changed app pool to work with Integrated mode .
But we getting a "Server error HTTP/1.1 405 Method Not Allowed" inside the applet after upload and upload fails also.

we are using Applet handlers as follows in webconfig <handlers> section
<system.webServer>
<handlers>
<add name="AppletHandler" path="*.Applet" verb="GET,HEAD,PUT,POST,DEBUG" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv4.0,bitness64" />
</handlers>
</system.webServer>

we think the handlers is not working and that is the cause of the error.
Please suggest us proper handlers to include to make it working in Integrated Mode of app Pool .

Re: Applet handlers not working in IIS7.5 Integrated mode

Posted: Sun Aug 24, 2014 12:31 pm
by support
It looks the upload request is not accepted by the server. JFileUpload uses HEAD/POST (multipart) or PUT depending on how you configured it.