Class: SOAP::RPC::HTTPServer
- Includes:
- AttrProxy
- Defined in:
- lib/soap/rpc/httpserver.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#default_namespace ⇒ Object
Returns the value of attribute default_namespace.
-
#server ⇒ Object
readonly
Returns the value of attribute server.
Instance Method Summary collapse
- #add_document_method(obj, soapaction, name, req_qnames, res_qnames) ⇒ Object
- #add_document_operation(receiver, soapaction, name, param_def, opt = {}) ⇒ Object
- #add_document_request_operation(factory, soapaction, name, param_def, opt = {}) ⇒ Object
- #add_headerhandler(obj) ⇒ Object (also: #add_rpc_headerhandler)
- #add_request_headerhandler(factory) ⇒ Object
-
#add_rpc_method(obj, name, *param) ⇒ Object
(also: #add_method)
method entry interface.
- #add_rpc_method_as(obj, name, name_as, *param) ⇒ Object (also: #add_method_as)
- #add_rpc_operation(receiver, qname, soapaction, name, param_def, opt = {}) ⇒ Object
- #add_rpc_request_operation(factory, qname, soapaction, name, param_def, opt = {}) ⇒ Object
-
#add_rpc_request_servant(factory, namespace = @default_namespace) ⇒ Object
servant entry interface.
- #add_rpc_servant(obj, namespace = @default_namespace) ⇒ Object
- #authenticator ⇒ Object
- #authenticator=(authenticator) ⇒ Object
- #filterchain ⇒ Object
-
#initialize(config) ⇒ HTTPServer
constructor
A new instance of HTTPServer.
- #on_init ⇒ Object
- #shutdown ⇒ Object
- #status ⇒ Object
Methods included from AttrProxy
Constructor Details
#initialize(config) ⇒ HTTPServer
Returns a new instance of HTTPServer.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/soap/rpc/httpserver.rb', line 32 def initialize(config) actor = config[:SOAPHTTPServerApplicationName] || self.class.name super(actor) @default_namespace = config[:SOAPDefaultNamespace] @webrick_config = config.dup self.level = Logger::Severity::ERROR # keep silent by default @webrick_config[:Logger] ||= @log @log = @webrick_config[:Logger] # sync logger of App and HTTPServer @router = ::SOAP::RPC::Router.new(actor) @soaplet = ::SOAP::RPC::SOAPlet.new(@router) on_init @server = WEBrick::HTTPServer.new(@webrick_config) @server.mount('/soaprouter', @soaplet) if wsdldir = config[:WSDLDocumentDirectory] @server.mount('/wsdl', WEBrick::HTTPServlet::FileHandler, wsdldir) end @server.mount('/', @soaplet) end |
Instance Attribute Details
#default_namespace ⇒ Object
Returns the value of attribute default_namespace.
25 26 27 |
# File 'lib/soap/rpc/httpserver.rb', line 25 def default_namespace @default_namespace end |
#server ⇒ Object (readonly)
Returns the value of attribute server.
24 25 26 |
# File 'lib/soap/rpc/httpserver.rb', line 24 def server @server end |
Instance Method Details
#add_document_method(obj, soapaction, name, req_qnames, res_qnames) ⇒ Object
109 110 111 112 |
# File 'lib/soap/rpc/httpserver.rb', line 109 def add_document_method(obj, soapaction, name, req_qnames, res_qnames) param_def = SOAPMethod.create_doc_param_def(req_qnames, res_qnames) @router.add_document_operation(obj, soapaction, name, param_def) end |
#add_document_operation(receiver, soapaction, name, param_def, opt = {}) ⇒ Object
122 123 124 |
# File 'lib/soap/rpc/httpserver.rb', line 122 def add_document_operation(receiver, soapaction, name, param_def, opt = {}) @router.add_document_operation(receiver, soapaction, name, param_def, opt) end |
#add_document_request_operation(factory, soapaction, name, param_def, opt = {}) ⇒ Object
126 127 128 |
# File 'lib/soap/rpc/httpserver.rb', line 126 def add_document_request_operation(factory, soapaction, name, param_def, opt = {}) @router.add_document_request_operation(factory, soapaction, name, param_def, opt) end |
#add_headerhandler(obj) ⇒ Object Also known as: add_rpc_headerhandler
85 86 87 |
# File 'lib/soap/rpc/httpserver.rb', line 85 def add_headerhandler(obj) @router.add_headerhandler(obj) end |
#add_request_headerhandler(factory) ⇒ Object
81 82 83 |
# File 'lib/soap/rpc/httpserver.rb', line 81 def add_request_headerhandler(factory) @router.add_request_headerhandler(factory) end |
#add_rpc_method(obj, name, *param) ⇒ Object Also known as: add_method
method entry interface
96 97 98 |
# File 'lib/soap/rpc/httpserver.rb', line 96 def add_rpc_method(obj, name, *param) add_rpc_method_as(obj, name, name, *param) end |
#add_rpc_method_as(obj, name, name_as, *param) ⇒ Object Also known as: add_method_as
101 102 103 104 105 106 |
# File 'lib/soap/rpc/httpserver.rb', line 101 def add_rpc_method_as(obj, name, name_as, *param) qname = XSD::QName.new(@default_namespace, name_as) soapaction = nil param_def = SOAPMethod.derive_rpc_param_def(obj, name, *param) @router.add_rpc_operation(obj, qname, soapaction, name, param_def) end |
#add_rpc_operation(receiver, qname, soapaction, name, param_def, opt = {}) ⇒ Object
114 115 116 |
# File 'lib/soap/rpc/httpserver.rb', line 114 def add_rpc_operation(receiver, qname, soapaction, name, param_def, opt = {}) @router.add_rpc_operation(receiver, qname, soapaction, name, param_def, opt) end |
#add_rpc_request_operation(factory, qname, soapaction, name, param_def, opt = {}) ⇒ Object
118 119 120 |
# File 'lib/soap/rpc/httpserver.rb', line 118 def add_rpc_request_operation(factory, qname, soapaction, name, param_def, opt = {}) @router.add_rpc_request_operation(factory, qname, soapaction, name, param_def, opt) end |
#add_rpc_request_servant(factory, namespace = @default_namespace) ⇒ Object
servant entry interface
73 74 75 |
# File 'lib/soap/rpc/httpserver.rb', line 73 def add_rpc_request_servant(factory, namespace = @default_namespace) @router.add_rpc_request_servant(factory, namespace) end |
#add_rpc_servant(obj, namespace = @default_namespace) ⇒ Object
77 78 79 |
# File 'lib/soap/rpc/httpserver.rb', line 77 def add_rpc_servant(obj, namespace = @default_namespace) @router.add_rpc_servant(obj, namespace) end |
#authenticator ⇒ Object
63 64 65 |
# File 'lib/soap/rpc/httpserver.rb', line 63 def authenticator @soaplet.authenticator end |
#authenticator=(authenticator) ⇒ Object
67 68 69 |
# File 'lib/soap/rpc/httpserver.rb', line 67 def authenticator=(authenticator) @soaplet.authenticator = authenticator end |
#filterchain ⇒ Object
90 91 92 |
# File 'lib/soap/rpc/httpserver.rb', line 90 def filterchain @router.filterchain end |
#on_init ⇒ Object
51 52 53 |
# File 'lib/soap/rpc/httpserver.rb', line 51 def on_init # do extra initialization in a derived class if needed. end |
#shutdown ⇒ Object
59 60 61 |
# File 'lib/soap/rpc/httpserver.rb', line 59 def shutdown @server.shutdown if @server end |
#status ⇒ Object
55 56 57 |
# File 'lib/soap/rpc/httpserver.rb', line 55 def status @server.status if @server end |