Sha256: 78381ed237f3a20e0425bb044eaa3700b04aac9d57f254a171e0f68d44eb9967

Contents?: true

Size: 787 Bytes

Versions: 1

Compression:

Stored size: 787 Bytes

Contents

require 'rexml/document'
require 'rexml/xpath'
require 'rforce/soap_pullable'


module RForce
  # Turns an XML response from the server into a Ruby
  # object whose methods correspond to nested XML elements.
  class SoapResponseRexml
    include SoapPullable
    include MethodKeys

    %w(attlistdecl cdata comment doctype doctype_end elementdecl
       entity entitydecl instruction notationdecl xmldecl).each do |unused|
      define_method(unused) {|*args|}
    end

    def initialize(content)
      @content = content
    end

    # Parses an XML string into structured data.
    def parse
      @current_value = nil
      @stack = []
      @parsed = {}
      @done = false
      @namespaces = []

      REXML::Document.parse_stream @content, self

      @parsed
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rforce-0.5 lib/rforce/soap_response_rexml.rb