Using passive regions.

Improve connector options mainly for standalone connector.
Updated "simple" example to return a timestamp.
This commit is contained in:
2016-06-14 16:01:37 +02:00
parent e53c960a89
commit af5fc75743
12 changed files with 100 additions and 62 deletions

View File

@@ -20,7 +20,12 @@ feature {NONE} -- Initialization
initialize
-- Initialize current service.
do
set_service_option ("port", 9090)
-- Specific to `standalone' connector (the EiffelWeb server).
-- See `{WSF_STANDALONE_SERVICE_LAUNCHER}.initialize'
set_service_option ("port", 9090)
set_service_option ("max_concurrent_connections", 10)
set_service_option ("keep_alive_timeout", 1)
set_service_option ("verbose", True)
end