Greenhopper behind IIS: 405 on PUT requests

Steven Segers July 10, 2012

I configured my IIS-server (IIS 7) to forward requests to JIRA, as outlined in in this procedure: https://confluence.atlassian.com/display/JIRA/Integrating+JIRA+with+IIS

It all works, except in the rapid board, when I move columns around I get 405-errors on PUT requests (IIS logging below).

I think my problem is similar to this question, which was never answered: https://answers.atlassian.com/questions/8254/confluence-webdav-iis-team-calendars-405-method-not-allowed

I've tried a few things, like disabling webdav in the web.config, but no luck so far. Anyone has an idea on how to solve this?

2012-07-11 08:57:16 141.86.241.22 PUT /jira/rest/greenhopper/1.0/rapidviewconfig/columns - 80 - 141.86.29.126 Mozilla/5.0+(Windows+NT+6.1;+WOW64)+AppleWebKit/536.11+(KHTML,+like+Gecko)+Chrome/20.0.1132.47+Safari/536.11 405 0 0 31

2 answers

1 accepted

0 votes
Answer accepted
Steven Segers July 16, 2012

Ok, fixed it. Disabling webdav did seem to be the solution. Only, I had tried to disable it by adding modules|remove in a web.config file, but that was aparently not the correct approach. Instead, I now disabled it for the whole server by modifying the applicationHost.config file as described here: http://support.microsoft.com/kb/942051/en-us

1 vote
Gaetan May 7, 2016

Greeting, 

It is the module and the handler WebDav which posed problem. 

 It thus should be disabled in the web.config of your application insystem.webServer with a pool in integrated: 

 

<modules>
    <remove name="WebDAVModule"/>
</modules>
<handlers accessPolicy="Read, Execute, Script">
    <remove name="WebDAV" />
</handlers>

@+

Dan Foster June 1, 2016

I just recently ran into WebDAV causing me problems with the Application Links between JIRA and Confluence giving me 405 errors.  I've been looking for an answer for two weeks now and I finally found it with this solution.  Unlike what Gaetan said, I found that I could get away with adding this config to the system.webServer section of the web.config file just as specified.  I'm running IIS8 on Windows 2012.  Thanks for the solution!!!!!

Suggest an answer

Log in or Sign up to answer