method

create_header

v1_8_7_72 - Show latest stable - Class: SOAP::RPC::Proxy
create_header(headers)
private

No documentation available.

# File lib/soap/rpc/proxy.rb, line 245
  def create_header(headers)
    header = SOAPHeader.new()
    headers.each do |content, mustunderstand, encodingstyle|
      header.add(SOAPHeaderItem.new(content, mustunderstand, encodingstyle))
    end
    header
  end