From 717b0f7ba8c3cee6c73be630e576f5b6c9421090 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Thu, 4 Jul 2013 07:27:51 -0700 Subject: [PATCH] Updated Doc_Getting_Started (mediawiki) --- Doc_Getting_Started.mediawiki | 40 +++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/Doc_Getting_Started.mediawiki b/Doc_Getting_Started.mediawiki index d2692f4b..f3eebb63 100644 --- a/Doc_Getting_Started.mediawiki +++ b/Doc_Getting_Started.mediawiki @@ -31,26 +31,26 @@ Once the project is compiled, we will adapt the root class to point to port numb To do this, we will redefine the feature initialize as follows: -class - APPLICATION - -inherit - WSF_DEFAULT_SERVICE - redefine - initialize - end - -create - make_and_launch - -feature {NONE} -- Initialization - - initialize - -- Initialize current service - do - set_service_option ("port", 9090) - end -end + class + APPLICATION + + inherit + WSF_DEFAULT_SERVICE + redefine + initialize + end + + create + make_and_launch + + feature {NONE} -- Initialization + + initialize + -- Initialize current service + do + set_service_option ("port", 9090) + end + end After one more compile, you can now launch the application and point your browser to [http://localhost:9090].