Sha256: 61bec7a8d1894603f2dbcf32824bf2004bd759296e2ef92acca7c186edc7b71a

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 KB

Contents

# encoding: ASCII-8BIT
require 'stockQuote.rb'

require 'soap/rpc/driver'

class StockQuoteServicePortType < ::SOAP::RPC::Driver
  DefaultEndpointUrl = "http://localhost/cgi-bin/stockQuoteService.cgi"
  MappingRegistry = ::SOAP::Mapping::Registry.new

  Methods = [
    [ XSD::QName.new("urn:xmltoday-delayed-quotes", "getQuote"),
      "",
      "getQuote",
      [ [:in, "arg0", ["::SOAP::SOAPString"]],
        [:retval, "getQuoteResult", ["::SOAP::SOAPFloat"]] ],
      { :request_style =>  :rpc, :request_use =>  :encoded,
        :response_style => :rpc, :response_use => :encoded }
    ]
  ]

  def initialize(endpoint_url = nil)
    endpoint_url ||= DefaultEndpointUrl
    super(endpoint_url, nil)
    self.mapping_registry = MappingRegistry
    init_methods
  end

private

  def init_methods
    Methods.each do |definitions|
      opt = definitions.last
      if opt[:request_style] == :document
        add_document_operation(*definitions)
      else
        add_rpc_operation(*definitions)
        qname = definitions[0]
        name = definitions[2]
        if qname.name != name and qname.name.capitalize == name.capitalize
          ::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
            __send__(name, *arg)
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
soap5r-2.0.3 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap5r-2.0.2 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap5r-2.0.1 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap5r-2.0.0 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap5r-2.0.0.20120130130121 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb