rename application' as service'

This commit is contained in:
Jocelyn Fiat
2011-11-25 16:22:44 +01:00
parent 42be0b2a4e
commit 9d457bb978
3 changed files with 14 additions and 14 deletions

View File

@@ -14,9 +14,9 @@ create
feature {NONE} -- Initialization
make (a_app: like application)
make (a_service: like service)
do
application := a_app
service := a_service
end
feature -- Access
@@ -29,7 +29,7 @@ feature -- Access
feature {NONE} -- Access
application: WGI_SERVICE
service: WGI_SERVICE
-- Gateway Service
feature -- Execution
@@ -43,7 +43,7 @@ feature -- Execution
if not rescued then
create req.make ((create {EXECUTION_ENVIRONMENT}).starting_environment_variables, create {WGI_CGI_INPUT_STREAM}.make, Current)
create res.make (create {WGI_CGI_OUTPUT_STREAM}.make)
application.execute (req, res)
service.execute (req, res)
else
if attached (create {EXCEPTION_MANAGER}).last_exception as e and then attached e.exception_trace as l_trace then
if res /= Void then