| Class | Rddb::Server::DefaultHandler |
| In: |
lib/rddb/server/default_handler.rb
|
| Parent: | Mongrel::HttpHandler |
Process the HTTP request
# File lib/rddb/server/default_handler.rb, line 5
5: def process(request, response)
6: #puts "Received #{request.method} request of type #{request.content_type} for #{request.host}:#{request.port}#{request.path}"
7: response.start(200) do |head,out|
8: out.write("Nothing")
9: end
10: end