Sha256: 948cb2f2104ca63226e92897988940d20f6287d3617210a396eb0a2d905ff7fb
Contents?: true
Size: 696 Bytes
Versions: 34
Compression:
Stored size: 696 Bytes
Contents
#!/usr/bin/env ruby $KCODE = "UTF8" # Set $KCODE before loading 'soap/xmlparser'. require 'soap/standaloneServer' require 'servant' class App < SOAP::StandaloneServer def initialize( *arg ) super( *arg ) # Explicit definition servant = Sm11PortType.new Sm11PortType::Methods.each do | methodNameAs, methodName, params, soapAction, namespace | addMethodWithNSAs( namespace, servant, methodName, methodNameAs, params, soapAction ) end # Easy way to add all methods. addServant( Sm11PortType.new ) self.mappingRegistry = Sm11PortType::MappingRegistry self.level = Logger::Severity::ERROR end end App.new( 'App', nil, '0.0.0.0', 10080 ).start
Version data entries
34 entries across 34 versions & 13 rubygems