You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by ra...@apache.org on 2019/05/29 03:17:42 UTC

svn commit: r1860312 - /olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext

Author: ramyav
Date: Wed May 29 03:17:42 2019
New Revision: 1860312

URL: http://svn.apache.org/viewvc?rev=1860312&view=rev
Log:
Few modifications

Modified:
    olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext

Modified: olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext?rev=1860312&r1=1860311&r2=1860312&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext Wed May 29 03:17:42 2019
@@ -26,7 +26,8 @@ This Tutorial shows how to use the Apach
 Therefore it contains the Explaining the Client section which explains how to implement the CRUD operations based on sample code.
 For creating a simple odata service refer the section Basic Tutorial: Create an OData V4 Service with Olingo in Olingo V4 tutorial
 ###Client Quickstart Guide
-With this Quickstart guide the runnable sample client and an sample service is created within a few minutes. Therefore it just requires an installed Java 6 Runtime, Maven 3 and an internet connection
+With this Quickstart guide the runnable sample client and an sample service is created within a few minutes. Therefore it just requires an installed Java 6 Runtime, Maven 3 and an internet connection.
+It also requires an odata service. This sample uses the Cars service which can be found under samples/server under olingo [git repository][1]. Build the project and deploy the war on a server. Follow the [Guide - To fetch the tutorial sources][2] to import the sample server project.
 
  1. Create a sample maven project and name it OlingoSampleApp.
  2. Create a new package org.apache.olingo.samples.client under this
@@ -572,4 +573,8 @@ So the code for delete of an entry the
         ODataDeleteResponse response = request.execute();
         return response.getStatusCode();
       }
-    }
\ No newline at end of file
+    }
+
+
+  [1]: https://gitbox.apache.org/repos/asf?p=olingo-odata4.git
+  [2]: https://olingo.apache.org/doc/odata4/tutorials/prerequisites/prerequisites.html
\ No newline at end of file