Using method override to send a PUT request via POST

Hi Everyone,

I'm trying to hit a PUT service from a BlackBerry, which does not support PUT requests.

I'm trying to figure out if I need to be anything special beyond setting a parameter like _method=PUT to get this to work. I've been referencing this page: http - set method to PUT in rails XML requests - Stack Overflow

Any guidance would be appreciated. Thanks!

This is a list for discussing development of Rails core.

In the future, post usage questions to Rails-talk group.

You have to send a POST (not GET) with _method=PUT, that is all.