Re: [fpc-pascal] Re: fpweb: handling DELETE method as well as GET

2013-02-28 Thread Reinier Olislagers
On 28-2-2013 12:22, Michael Van Canneyt wrote: > On Thu, 28 Feb 2013, Reinier Olislagers wrote: >> On 28-2-2013 10:58, Reinier Olislagers wrote: >>> Using fpweb, I'm trying to handle DELETE requests. >>> >>> The code below works for GET calls: >>> GET /cgi-bin/tigercgi/document/ HTTP/1.1" 200 >>> b

Re: [fpc-pascal] Re: fpweb: handling DELETE method as well as GET

2013-02-28 Thread Michael Van Canneyt
On Thu, 28 Feb 2013, Reinier Olislagers wrote: On 28-2-2013 10:58, Reinier Olislagers wrote: Using fpweb, I'm trying to handle DELETE requests. The code below works for GET calls: GET /cgi-bin/tigercgi/document/ HTTP/1.1" 200 but gives a 500 server error for DELETE calls: DELETE /cgi-bin/tig

Re: [fpc-pascal] Re: fpweb: handling DELETE method as well as GET

2013-02-28 Thread Michael Van Canneyt
On Thu, 28 Feb 2013, Reinier Olislagers wrote: On 28-2-2013 10:58, Reinier Olislagers wrote: Using fpweb, I'm trying to handle DELETE requests. The code below works for GET calls: GET /cgi-bin/tigercgi/document/ HTTP/1.1" 200 but gives a 500 server error for DELETE calls: DELETE /cgi-bin/tig

[fpc-pascal] Re: fpweb: handling DELETE method as well as GET

2013-02-28 Thread Reinier Olislagers
On 28-2-2013 10:58, Reinier Olislagers wrote: > Using fpweb, I'm trying to handle DELETE requests. > > The code below works for GET calls: > GET /cgi-bin/tigercgi/document/ HTTP/1.1" 200 > but gives a 500 server error for DELETE calls: > DELETE /cgi-bin/tigercgi/document/ HTTP/1.1" 500 > > The co