Removed in WGI_INPUT_STREAM, the assertion "same_last_string_reference" Copyright updates
30 lines
456 B
Plaintext
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
|