# File lib/soap/parser.rb, line 152
  def characters(text)
    # Ignore Text outside of SOAP Envelope.
    if lastframe = @parsestack.last
      # Need not to be cloned because character does not have attr.
      decode_text(lastframe.ns, text, lastframe.handler)
    end
  end