From e62f17f80a7cfd6f89f74fe6f2062850f54d1477 Mon Sep 17 00:00:00 2001 From: xue <> Date: Tue, 27 Dec 2005 03:46:55 +0000 Subject: --- .../protected/pages/Fundamentals/Services.page | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'demos/quickstart/protected/pages/Fundamentals/Services.page') diff --git a/demos/quickstart/protected/pages/Fundamentals/Services.page b/demos/quickstart/protected/pages/Fundamentals/Services.page index eabed42b..500929ba 100644 --- a/demos/quickstart/protected/pages/Fundamentals/Services.page +++ b/demos/quickstart/protected/pages/Fundamentals/Services.page @@ -2,7 +2,21 @@

Services

-A service is ... TBD. +A service is an instance of a class implementing the IService interface. Each kind of service processes a specific type of user requests. For example, the page service responds to users' requests for PRADO pages. +

+

+A service is uniquely identified by its ID property. By default when THttpRequest is used as the request module, GET variable names are used to identify which service a user is requesting. If a GET variable name is equal to some service ID, the request is considered for that service, and the value of the GET variable is passed as the service parameter. For page service, the name of the GET variable must be page. For example, the following URL requests for the Fundamentals.Services page, +

+http://hostname/index.php?page=Fundamentals.Services
+
+

+

+Developers may implement additional services for their applications. To make a service available, configure it in application configurations. +

+ +

Page Service

+

+TBD

\ No newline at end of file -- cgit v1.2.3