File: server.cgi

package info (click to toggle)
soap4r 1.4.8-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,472 kB
  • ctags: 2,206
  • sloc: ruby: 19,295; makefile: 58; sh: 41; perl: 10
file content (15 lines) | stat: -rwxr-xr-x 317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/local/bin/ruby

require 'soap/cgistub'
require 'sampleStruct'

class SampleStructServer < SOAP::CGIStub
  def initialize( *arg )
    super
    aServant = SampleStructService.new
    addServant( aServant )
  end
end

status = SampleStructServer.new( 'SampleStructServer',
  SampleStructServiceNamespace ).start