RE: [coldbox:18271] [coldbox-3.5.3] - Help! DELETE verb and 302s

Yeah, it’s almost certainly some piece of hardware or software in your stack that’s blocking those. It’s not uncommon for web servers, firewalls, or web application filters to introspect HTTP and block requests that use HTTP methods they don’t think should be used for security. I know IIS has filters for allowed verbs, but I don’t have IIS7 in front of me at the moment to find it.

Your best bet will be to trace the network traffic all the way through from the client to the server and confirm at each point that the traffic was not blocked. Of course, IT cooperation is a must there :slight_smile:

Thanks!

~Brad

ColdBox Platform Evangelist
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

Brad was definitely right. :slight_smile:

Turns out that the load balancer we are using doesn’t support the DELETE verb, and so it was sending the requests on to the server without a particular header that would cause the requests to be handled properly.

If anyone else runs into an issue like, feel free to contact me off-board and I can give you the details of the problem and solution.

Thanks