In Files

  • xmlrpc/server.rb

XMLRPC::ModRubyServer

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>))

Public Class Methods

new(*a) click to toggle source
 
               # File xmlrpc/server.rb, line 514
def initialize(*a)
  @ap = Apache::request
  super(*a)
end
            

Public Instance Methods

serve() click to toggle source
 
               # File 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.size != length

    http_write(process(data), 200, "Content-type" => "text/xml; charset=utf-8")
  }
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus