Applet handlers not working in IIS7.5 Integrated mode

Upload core product.
Post Reply
ajishapj
Posts: 1
Joined: Tue Jun 17, 2014 5:52 am

Applet handlers not working in IIS7.5 Integrated mode

Post 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 .
Attachments
405.jpg
Upload error
(38.58 KiB) Not downloaded yet

User avatar
support
Posts: 1503
Joined: Sun Jan 27, 2008 6:19 pm

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

Post 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.

Post Reply