Fixed issues in WGI_REQUEST's invariant

Fixed issues with guessing the default format for REST handling
Fixed issue with .._ROUTING_.. component.
This commit is contained in:
Jocelyn Fiat
2011-09-16 20:59:06 +02:00
parent 111812c4e9
commit b3ef7c846b
5 changed files with 17 additions and 15 deletions

View File

@@ -31,7 +31,7 @@ feature -- Execution
execute (ctx: C; req: WGI_REQUEST; res: WGI_RESPONSE_BUFFER)
do
Precursor {REST_REQUEST_HANDLER} (ctx, req, res)
Precursor {REQUEST_URI_ROUTING_HANDLER_I} (ctx, req, res)
end
execute_application (ctx: C; req: WGI_REQUEST; res: WGI_RESPONSE_BUFFER)

View File

@@ -38,7 +38,7 @@ feature -- Execution
execute (ctx: C; req: WGI_REQUEST; res: WGI_RESPONSE_BUFFER)
do
Precursor {REST_REQUEST_HANDLER} (ctx, req, res)
Precursor {REQUEST_URI_TEMPLATE_ROUTING_HANDLER_I} (ctx, req, res)
end
execute_application (ctx: C; req: WGI_REQUEST; res: WGI_RESPONSE_BUFFER)