Hi anyone ever had a situation that a PATCH method over XHR (AJAX requests) was blocked by a firewall ?
Basically we had a situation where a client was complaining that he couldn't update stuff on our app. We checked it everywhere in the world it was working (we connected via VPN several places)
Then they provided us a remote desktop (latest Windows, latest chrome) so we tried it for our-self from their network, and they were right. All PATCH methods via AJAX calls ended up with 405 but all PUT POST DELETE GET methods were fine. We tried to track these PATCH requests in application and Nginx logs but it seems they never hit our server. So conclusion is that their firewall newer let the request leave the building.
normal:
| Laptop PATCH -> Clients Firewal -> Load Balancer -> Nginx proxy -> Rails app (200 response) |
this firewall case:
| Laptop PATCH -> Clients Firewal (405 response) |
Due to lack of time to investigate this we just changed some of these problematic endpoints from PATCH to PUT, and everything was working !
my only explanation in that because PATCH is part of another (later introduced) RFC their firewall must be super old and not registering PATCH as a valid method. Their sys-admin have no idea why this could be. But one clue is that the application is EdTech and clients are Schools => they not necessarily may have the latest technology on their networking stack. Also nanny-software may be preset.
cross-reference to Reddit discussion on same question: https://www.reddit.com/r/rest/comments/5gkvba/patch_blocked_by_firewall/