method

rootnode

v1_8_6_287 - Show latest stable - Class: SOAP::SOAPType
rootnode()
public

No documentation available.

# File lib/soap/baseData.rb, line 67
  def rootnode
    node = self
    while node = node.parent
      break if SOAPEnvelope === node
    end
    node
  end