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.

...

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

...

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


Code Block
 

...

<modules>
 

...

<remove name="WebDAVModule"/>
 </

...

modules>

 

...

<handlers>
 

...

<remove name="WebDAV"/>
 </

...

handlers>