Added an example demonstrating the WSF_FORM component from wsf_html library.

This commit is contained in:
2017-02-09 16:19:22 +01:00
parent 08440b5c0c
commit 0786f1700f
5 changed files with 633 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
note
description: "See description of {APPLICATION_EXECUTION}"
date: "$Date$"
revision: "$Revision$"
class
APPLICATION
inherit
WSF_DEFAULT_SERVICE [APPLICATION_EXECUTION]
redefine
initialize
end
create
make_and_launch
feature {NONE} -- Initialization
initialize
-- Initialize current service.
do
-- Specific to `standalone' connector (the EiffelWeb server).
-- See `{WSF_STANDALONE_SERVICE_LAUNCHER}.initialize'
set_service_option ("port", 9090)
import_service_options (create {WSF_SERVICE_LAUNCHER_OPTIONS_FROM_INI}.make_from_file ("server.ini"))
end
end