File: stockQuoteService.cgi

package info (click to toggle)
ruby-soap4r 2.0.5-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,032 kB
  • sloc: ruby: 52,729; xml: 266; sh: 42; javascript: 20; makefile: 13; perl: 10
file content (44 lines) | stat: -rwxr-xr-x 1,334 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env ruby
require 'soap/rpc/cgistub'
require 'soap/mapping/registry'
require 'stockQuoteService.rb'

class StockQuoteServicePortType
  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 }
    ]
  ]
end

class StockQuoteServicePortTypeApp < ::SOAP::RPC::CGIStub
  def initialize(*arg)
    super(*arg)
    servant = StockQuoteServicePortType.new
    StockQuoteServicePortType::Methods.each do |definitions|
      opt = definitions.last
      if opt[:request_style] == :document
        @router.add_document_operation(servant, *definitions)
      else
        @router.add_rpc_operation(servant, *definitions)
      end
    end
    self.mapping_registry = StockQuoteServicePortType::MappingRegistry
    self.level = Logger::Severity::ERROR
  end
end


if ENV['QUERY_STRING'] == 'wsdl'
   puts "Content-Type: text/html\r\n\r\n"
   puts IO.readlines('~/web/cgi-bin/stockQuoteService.wsdl')
else
   StockQuoteServicePortTypeApp.new('app', nil).start
end