Return-Path: X-Original-To: apmail-olingo-commits-archive@minotaur.apache.org Delivered-To: apmail-olingo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A0EE410EC4 for ; Wed, 12 Feb 2014 13:37:27 +0000 (UTC) Received: (qmail 76796 invoked by uid 500); 12 Feb 2014 13:37:27 -0000 Delivered-To: apmail-olingo-commits-archive@olingo.apache.org Received: (qmail 76753 invoked by uid 500); 12 Feb 2014 13:37:24 -0000 Mailing-List: contact commits-help@olingo.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@olingo.incubator.apache.org Delivered-To: mailing list commits@olingo.incubator.apache.org Received: (qmail 76742 invoked by uid 99); 12 Feb 2014 13:37:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Feb 2014 13:37:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Feb 2014 13:37:22 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5BCCD238897A; Wed, 12 Feb 2014 13:37:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1567619 - /incubator/olingo/site/trunk/content/doc/tutorials/OlingoV2BasicClientSample.mdtext Date: Wed, 12 Feb 2014 13:37:02 -0000 To: commits@olingo.incubator.apache.org From: mibo@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140212133702.5BCCD238897A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mibo Date: Wed Feb 12 13:37:01 2014 New Revision: 1567619 URL: http://svn.apache.org/r1567619 Log: CMS commit to olingo by mibo Modified: incubator/olingo/site/trunk/content/doc/tutorials/OlingoV2BasicClientSample.mdtext Modified: incubator/olingo/site/trunk/content/doc/tutorials/OlingoV2BasicClientSample.mdtext URL: http://svn.apache.org/viewvc/incubator/olingo/site/trunk/content/doc/tutorials/OlingoV2BasicClientSample.mdtext?rev=1567619&r1=1567618&r2=1567619&view=diff ============================================================================== --- incubator/olingo/site/trunk/content/doc/tutorials/OlingoV2BasicClientSample.mdtext (original) +++ incubator/olingo/site/trunk/content/doc/tutorials/OlingoV2BasicClientSample.mdtext Wed Feb 12 13:37:01 2014 @@ -19,15 +19,17 @@ Notice: Licensed to the Apache Softwa # How to use Apache Olingo as Client Library This Tutorial shows how to use the Apache Olingo Library for CRUD operations on an OData Service. -Therefore it contains the main sections: +Therefore it contains the [Explaining the Client](#start) section which explains how to implement the CRUD operations based on sample code +and a [Client Quickstart Guide](#quickstart) which give a step by step guide to create a sample and server to see both together in action. * [Client Quickstart Guide](#quickstart): Get a running sample client and server within a few minutes (Requirements at least *Java 7 Runtime* and *Maven 3*) - * [Explaining the Client](#start): The actual *How To* with explanation and sample code for following use cases: - * [Read the Metadata](#readmetadata), [Read the Data](#readdata), [Create more Data](#createdata), [Update the Data](#updatedata) and [Delete the Data](#deletedata) - * [Run the Client](#run): After the *How To* the sample code from all samples can be put together and be executed against a Sample Service. - * [Put the parts together](#together): A explanation and sample how before build client can be used - * [Run Sample Client](#runsample): Show how to run the Sample Client against a Sample Service (Requirements at least *Java 7 Runtime* and *Maven 3*) - * [Copy and Paste](#copypaste): Contains the complete sample code as *copy/paste* template (to build a Maven Project) + * [Explaining the Client](#start): The actual *How To* with explanation and sample code for following use cases: [Read the Metadata](#readmetadata), [Read the Data](#readdata), [Create more Data](#createdata), [Update the Data](#updatedata) and [Delete the Data](#deletedata) + [Run the Client](#run): After the *How To* the sample code from all samples can be put together and be executed against a Sample Service. + [Put the parts together](#together): A explanation and sample how before build client can be used + [Run Sample Client](#runsample): Show how to run the Sample Client against a Sample Service (Requirements at least *Java 7 Runtime* and *Maven 3*) + [Copy and Paste](#copypaste): Contains the complete sample code as *copy/paste* template (to build a Maven Project) + +--- ### Client Quickstart Guide @@ -58,6 +60,8 @@ Therefore it just requires an installed **Optional** With running `mvn eclipse:eclipse` within the created sample client and sample server projects the necessary Eclipse project files will be generated so that both projects can easily imported into Eclipse (Eclipse -> *File* -> *Import...* *Import existing projects into workspace*). +--- + ### Explaining the Client