XMLRPC::ModRubyServer

Description

Implements a XML-RPC server, which works with Apache mod_ruby.

Use it in the same way as CGIServer!

Superclass

((<XMLRPC::BasicServer>))

Methods
H
N
S
Class Public methods
new(*a)
# File ../ruby/lib/xmlrpc/server.rb, line 514
def initialize(*a)
  @ap = Apache::request
  super(*a)
end
Instance Public methods
serve()
# File ../ruby/lib/xmlrpc/server.rb, line 519
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
Instance Private methods
http_error(status, message)
# File ../ruby/lib/xmlrpc/server.rb, line 543
def http_error(status, message)
  err = "#{status} #{message}"
  msg = <<-"MSGEND"
    <html>
      <head>
        <title>#{err}</title>
      </head>
      <body>
        <h1>#{err}</h1>
        <p>Unexpected error occured while processing XML-RPC request!</p>
      </body>
    </html>
  MSGEND

  http_write(msg, status, "Status" => err, "Content-type" => "text/html")
  throw :exit_serve # exit from the #serve method
end
http_write(body, status, header)
# File ../ruby/lib/xmlrpc/server.rb, line 561
def http_write(body, status, header)
  h = {}
  header.each {|key, value| h[key.to_s.capitalize] = value}
  h['Status']         ||= "200 OK"
  h['Content-length'] ||= body.bytesize.to_s

  h.each {|key, value| @ap.headers_out[key] = value }
  @ap.content_type = h["Content-type"]
  @ap.status = status.to_i
  @ap.send_http_header

  @ap.print body
end