class Ox::StreamParser::OxParser

The SAX wrapper.

Public Instance Methods

parse(str) click to toggle source

Initiates the sax parser with the provided string.

# File lib/ox/xmlrpc_adapter.rb, line 29
def parse(str)
  Ox.sax_parse(self, StringIO.new(str), :symbolize => false, :convert_special => true)
end