Class SOAP::RPC::StandaloneServer
In: lib/soap/rpc/standaloneServer.rb
Parent: HTTPServer

Methods

create_config   new  

External Aliases

add_rpc_servant -> add_servant
add_rpc_headerhandler -> add_headerhandler

Public Class methods

[Source]

    # File lib/soap/rpc/standaloneServer.rb, line 17
17:   def initialize(appname, default_namespace, host = "0.0.0.0", port = 8080)
18:     @appname = appname
19:     @default_namespace = default_namespace
20:     @host = host
21:     @port = port
22:     super(create_config)
23:   end

Private Instance methods

[Source]

    # File lib/soap/rpc/standaloneServer.rb, line 30
30:   def create_config
31:     {
32:       :BindAddress => @host,
33:       :Port => @port,
34:       :AccessLog => [],
35:       :SOAPDefaultNamespace => @default_namespace,
36:       :SOAPHTTPServerApplicationName => @appname,
37:     }
38:   end

[Validate]