Re: PUT/DELETE with Aserve

John Foderaro <[email protected]> Fri, 20 Jan 2006 15:54:17 -0800
Newsgroups gmane.lisp.web
Message-ID <[email protected]>
>> I would like to use PUT/DELETE methods with Aserve. Could you please
>> tell me if that is possible and some hints on how to start with it?

use net.aserve:publish or net.aserve:publish-prefix 
to associate a function with a portion of url-space and then
in your function look at 
    (request-method req)
for :put or :delete and then do what you want.

I've never tried this myself.. but that's what I'd start with
and see what, if any, problems arise.