Flowdock
method

request_doc_lit

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::RPC::Proxy::Operation
request_doc_lit(values, mapping_registry, opt) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/rpc/proxy.rb, line 420
    def request_doc_lit(values, mapping_registry, opt)
      (0...values.size).collect { |idx|
        ele = Mapping.obj2soap(values[idx], mapping_registry,
          @doc_request_qnames[idx], opt)
        ele.encodingstyle = LiteralNamespace
        if ele.respond_to?(:qualified)
          ele.qualified = @doc_request_qualified[idx]
        end
        ele
      }
    end
Register or log in to add new notes.