Sha256: 40dfe63d910143663e560021c3aa3c51b4010a69ccf8664d1857ec9bb5deface

Contents?: true

Size: 515 Bytes

Versions: 2

Compression:

Stored size: 515 Bytes

Contents

xml.instruct!
xml.tag! "soap:Envelope", "xmlns:soap" => 'http://schemas.xmlsoap.org/soap/envelope/',
                          "xmlns:xsd" => 'http://www.w3.org/2001/XMLSchema',
                          "xmlns:tns" => @namespace do
  if !header.nil?
    xml.tag! "soap:Header" do
      xml.tag! "tns:#{@action_spec[:response_tag]}" do
        wsdl_data xml, header
      end
    end
  end
  xml.tag! "soap:Body" do
    xml.tag! "tns:#{@action_spec[:response_tag]}" do
      wsdl_data xml, result
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wash_out-0.12.0 app/views/wash_out/document/response.builder
wash_out-0.11.0 app/views/wash_out/document/response.builder