From 80c1cc1c0d6da118b9156ecfb0c89874ae5be546 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Thu, 27 Sep 2012 16:10:50 +0200 Subject: [PATCH] Fixed wizard generated code with new router design --- tools/ise_wizard/resources/ewf_application-uri-template.e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ise_wizard/resources/ewf_application-uri-template.e b/tools/ise_wizard/resources/ewf_application-uri-template.e index 8a1ecaab..5e99364c 100644 --- a/tools/ise_wizard/resources/ewf_application-uri-template.e +++ b/tools/ise_wizard/resources/ewf_application-uri-template.e @@ -27,7 +27,7 @@ feature {NONE} -- Initialization setup_router do -- Set the router here - router.map_agent ("/hello/{user}", agent execute_hello) + map_uri_template_agent ("/hello/{user}", agent execute_hello) end feature -- Execution @@ -43,7 +43,7 @@ feature -- Execution res.redirect_now_with_content (l_url, "Redirection to " + l_url, "text/html") end - execute_hello (ctx: WSF_URI_TEMPLATE_HANDLER_CONTEXT; req: WSF_REQUEST; res: WSF_RESPONSE) + execute_hello (req: WSF_REQUEST; res: WSF_RESPONSE) -- Computed response message. local mesg: WSF_HTML_PAGE_RESPONSE