Sha256: 2032fe07071ca1bd27e6b2e3fe3268b3ce5b04c1c1be8f039c5b53c665680ff0

Contents?: true

Size: 1.3 KB

Versions: 7

Compression:

Stored size: 1.3 KB

Contents

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

7 entries across 7 versions & 2 rubygems

Version Path
soap4r-spox-1.6.0 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap4r-ruby1.9-2.0.5 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap4r-ruby1.9-2.0.3 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap4r-ruby1.9-2.0.2 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap4r-ruby1.9-2.0.1 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap4r-ruby1.9-2.0.0 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
soap4r-ruby1.9-1.0.0 sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb