Re: [PHP-DEV] Add support for arbitrary HTTP methods

2016-07-22 Thread Christoph Becker
On 22.07.2016 at 12:28, Nikita Popov wrote: > On Fri, Jul 22, 2016 at 2:28 AM, Nazar Mokrynskyi > wrote: > >> I want to bring here question about supporting custom http methods in >> built-in webserver with router script. >> >> The problem is that GET, POST are standard

Re: [PHP-DEV] Add support for arbitrary HTTP methods

2016-07-22 Thread Nikita Popov
On Fri, Jul 22, 2016 at 2:28 AM, Nazar Mokrynskyi wrote: > Hi internals, > > I want to bring here question about supporting custom http methods in > built-in webserver with router script. > > The problem is that GET, POST are standard methods and they work fine, > but for

[PHP-DEV] Add support for arbitrary HTTP methods

2016-07-21 Thread Nazar Mokrynskyi
Hi internals, I want to bring here question about supporting custom http methods in built-in webserver with router script. The problem is that GET, POST are standard methods and they work fine, but for custom methods like XYZ_METHOD_ALSO_ALLOWED webserver responds with 501 Not Implemented. 501