Getting 405 error while trying to download nltk data

This is caused by a down-age of Github raw file link. Meanwhile a stop-gap solution would be to manually download the file: PATH_TO_NLTK_DATA=/home/username/nltk_data/ wget https://github.com/nltk/nltk_data/archive/gh-pages.zip unzip gh-pages.zip mv nltk_data-gh-pages/ $PATH_TO_NLTK_DATA We’re working on finding an alternative to the data and model downloading. Meanwhile, @everyone please help to check that your script(s) and make sure that … Read more

Web API Put Request generates an Http 405 Method Not Allowed error

So, I checked Windows Features to make sure I didn’t have this thing called WebDAV installed, and it said I didn’t. Anyways, I went ahead and placed the following in my web.config (both front end and WebAPI, just to be sure), and it works now. I placed this inside <system.webServer>. <modules runAllManagedModulesForAllRequests=”true”> <remove name=”WebDAVModule”/> <!– … Read more

HTTP Status 405 – HTTP method is not supported by this URL

This is the default response of the default implementation of HttpServlet#doXxx() method (doGet(), doPost(), doHead(), doPut(), etc). This means that when the doXxx() method is not properly being @Overriden in your servlet class, or when it is explicitly being called via super, then you will face a HTTP 405 “Method not allowed” error. So, you … Read more