How can I do the same authentication stuff in this page using a subclass like this:
class Configuration < HTTPServlet::AbstractServlet
def do_GET (request, response)
SOMETHING....
end
end
server = HTTPServer.new(:Port => 666)
server.mount "/conf", Configuration
trap "INT" do server.shutdown end
server.start
Seems to work OK for me if you do it in pretty much the same style e.g.
What is the problem you're having?