class SOAP::Filter::Handler

Public Instance Methods

on_inbound(xml, opt) click to toggle source

should return xml. opt can be updated for other filters.

# File lib/soap/filter/handler.rb, line 23
def on_inbound(xml, opt)
  # do something.
  xml
end
on_outbound(envelope, opt) click to toggle source

should return envelope. opt can be updated for other filters.

# File lib/soap/filter/handler.rb, line 17
def on_outbound(envelope, opt)
  # do something.
  envelope
end