Implements a XML-RPC server, which works with Apache mod_ruby.
Use it in the same way as XMLRPC::CGIServer!
Methods
Class Public methods
new(*a)
Link
Creates a new XMLRPC::ModRubyServer instance.
All parameters given are by-passed to XMLRPC::BasicServer.new.
Instance Public methods
serve()
Link
Call this after you have added all you handlers to the server.
This method processes a XML-RPC method call and sends the answer back to the client.
# File lib/xmlrpc/server.rb, line 475 def serve catch(:exit_serve) { header = {} @ap.headers_in.each {|key, value| header[key.capitalize] = value} length = header['Content-length'].to_i http_error(405, "Method Not Allowed") unless @ap.request_method == "POST" http_error(400, "Bad Request") unless parse_content_type(header['Content-type']).first == "text/xml" http_error(411, "Length Required") unless length > 0 # TODO: do we need a call to binmode? @ap.binmode data = @ap.read(length) http_error(400, "Bad Request") if data.nil? or data.bytesize != length http_write(process(data), 200, "Content-type" => "text/xml; charset=utf-8") } end