Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This 405 error can be caused after clicking the delete icon of the field mappings if IIS is not properly configured.

To resolve this ,you have two options:

I. Disable WebDAB Publishing:

  1. Go to Programs and Features => Turn Windows Features On or Off
  2. Disable WebDAV Publishing under Internet Information Services => World Wide Web Services => Common HTTP Features
    enter image description hereImage Modified
  3. Restart TFS4JIRA app pool in IIS Manager


II. Disable WebDAV Publishing in web.config file

As mentioned in https://stackoverflow.com/questions/49907423/side-effects-of-disabling-webdavmodule-in-asp-net-mvc-webapi

Just add those lines to web.config file located in the root folder of TFS4JIRA:

 <modules>
 <remove name="WebDAVModule"/>
 </modules>

 <handlers>
 <remove name="WebDAV"/>
 </handlers>