Sha256: 2fdffe4c21f73927836c723c2fb63f04bbdc0c8a4148b461d9b5bcdf796bf2d0

Contents?: true

Size: 446 Bytes

Versions: 3

Compression:

Stored size: 446 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
  xml.tag! "soap:Body" do
    key = "tns:#{@operation}#{controller.soap_config.camelize_wsdl ? 'Response' : '_response'}"

    xml.tag! @action_spec[:response_tag] do
      wsdl_data xml, result
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wash_out-0.9.0 app/views/wash_with_soap/document/response.builder
wash_out-0.9.0.beta.2 app/views/wash_with_soap/document/response.builder
wash_out-0.9.0.beta.1 app/views/wash_with_soap/document/response.builder