You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by mi...@apache.org on 2013/09/25 04:39:08 UTC

svn commit: r1526087 - /incubator/olingo/site/trunk/content/doc/tutorials/basicread.mdtext

Author: mibo
Date: Wed Sep 25 02:39:08 2013
New Revision: 1526087

URL: http://svn.apache.org/r1526087
Log:
CMS commit to olingo by mibo

Modified:
    incubator/olingo/site/trunk/content/doc/tutorials/basicread.mdtext

Modified: incubator/olingo/site/trunk/content/doc/tutorials/basicread.mdtext
URL: http://svn.apache.org/viewvc/incubator/olingo/site/trunk/content/doc/tutorials/basicread.mdtext?rev=1526087&r1=1526086&r2=1526087&view=diff
==============================================================================
--- incubator/olingo/site/trunk/content/doc/tutorials/basicread.mdtext (original)
+++ incubator/olingo/site/trunk/content/doc/tutorials/basicread.mdtext Wed Sep 25 02:39:08 2013
@@ -33,10 +33,10 @@ The implementation of the Data Provider 
 ## Implement your OData Service 
 ### Shortcut 
 
-As a shortcut you can download the [Cars-Sample-Read-Basic Project](cars-sample-basic-read.zip).
+As a shortcut you can download the [Olingo Tutorial 'Basic-Read' Project](apache-olingo-tutorial-basic_read).
 
 ### Deployment Descriptor 
-- The sample-web project contains a Deployment Descriptor. Create the web.xml file in the org.apache.olingo.odata2.sample.web project by generating a Deployment Descriptor Stub. Replace the xml in the stub with the following deployment descriptor xml. 
+- The sample-web project contains a Deployment Descriptor. Create the web.xml file in the `olingo.odata2.sample.cars.web` project by generating a Deployment Descriptor Stub. Replace the xml in the stub with the following deployment descriptor xml. 
 
 ###### Sample Code      
 
@@ -68,7 +68,7 @@ As a shortcut you can download the [Cars
         </servlet-mapping>
     </web-app>
 
-- Start the command line tool, goto folder *~git_repository~\org.apache.olingo.odata2.sample* and enter
+- Start the command line tool, goto folder *~git_repository~\org.apache.olingo.odata2.sample.cars* and enter
 `mvn clean install` to build your projects 
 
 - The deployment Descriptor contains two `<init-param>` elements which define the OData Application `org.apache.olingo.odata2.core.rest.app.ODataApplication` and your Service Factory `org.apache.olingo.odata2.sample.service.MyServiceFactory`. The OData Application is implemented in the OData Library (Core) and registers a root locator and an exception mapper. The root locator looks up your registered Service Factory to get access to the Entity Data Model Provider and the OData Processor which provides the runtime data. In addition the root locator looks up a parameter `org.apache.olingo.odata2.path.split` (not present in the deployment descriptor above) which indicates how many path segments are reserved for the OData Service via an Integer value (default is 0, which means that the OData Service name corresponds to the defined `url-pattern`).