Files
EWF/examples/simple_file/service_file.e
Jocelyn Fiat 03bf467ee5 Added descriptions to WSF_RESPONSE about .send (mesg)
Fixed minor issues in other classes
2012-05-25 23:51:59 +02:00

25 lines
361 B
Plaintext

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