Added basic two basic examples, refactor rename restbucks

to restbucksCRUD
This commit is contained in:
jvelilla
2011-12-08 18:43:29 -03:00
parent 39b5a70979
commit 3313e9cf81
26 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
note
description : "simple application root class"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION
inherit
DEFAULT_SERVICE
create
make
feature {NONE} -- Initialization
make
-- Run application.
do
make_and_launch
end
execute (req: WSF_REQUEST; res: WSF_RESPONSE)
do
-- To send a response we need to setup, the status code and
-- the response headers.
res.set_status_code ({HTTP_STATUS_CODE}.ok)
res.write_header_text ("")
res.write_string ("Hello World")
end
end