Updated Doc_Getting_Started (mediawiki)

This commit is contained in:
Jocelyn Fiat
2013-07-04 07:27:51 -07:00
parent 2d373cab5b
commit 717b0f7ba8

View File

@@ -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:
<code lang="eiffel">
class
class
APPLICATION
inherit
inherit
WSF_DEFAULT_SERVICE
redefine
initialize
end
create
create
make_and_launch
feature {NONE} -- Initialization
feature {NONE} -- Initialization
initialize
-- Initialize current service
do
set_service_option ("port", 9090)
end
end
end
</code>
After one more compile, you can now launch the application and point your browser to [http://localhost:9090].