In Files

  • xmlrpc/parser.rb

Parent

XMLRPC::XMLParser::AbstractStreamParser

Public Instance Methods

parseMethodCall(str) click to toggle source
 
               # File xmlrpc/parser.rb, line 473
def parseMethodCall(str)
  parser = @parser_class.new
  parser.parse(str)
  raise "No valid method call - missing method name!" if parser.method_name.nil?
  [parser.method_name, parser.params]
end
            
parseMethodResponse(str) click to toggle source
 
               # File xmlrpc/parser.rb, line 458
def parseMethodResponse(str)
  parser = @parser_class.new
  parser.parse(str)
  raise "No valid method response!" if parser.method_name != nil
  if parser.fault != nil
    # is a fault structure
    [false, parser.fault] 
  else
    # is a normal return value
    raise "Missing return value!" if parser.params.size == 0
    raise "Too many return values. Only one allowed!" if parser.params.size > 1
    [true, parser.params[0]]
  end
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