Files
EWF/examples/simple_file/service_file.e
Jocelyn Fiat 46eb92ac37 Major renaming, adopt the WSF_ prefix for all classes under "wsf", and simplify some class names
Removed in WGI_INPUT_STREAM, the assertion "same_last_string_reference"
Copyright updates
2012-03-16 09:49:41 +01:00

30 lines
456 B
Plaintext

note
description : "simple application root class"
date : "$Date$"
revision : "$Revision$"
class
SERVICE_FILE
create
make
feature {NONE} -- Initialization
make
-- Run application.
local
s: WSF_DEFAULT_SERVICE_LAUNCHER
do
create s.make_and_launch (agent execute)
end
execute (req: WSF_REQUEST; res: WSF_RESPONSE)
local
f: WSF_FILE_RESPONSE
do
create f.make_html ("home.html")
res.put_response (f)
end
end