You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by sk...@apache.org on 2013/12/03 13:08:45 UTC

svn commit: r1547359 - /incubator/olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext

Author: sklevenz
Date: Tue Dec  3 12:08:45 2013
New Revision: 1547359

URL: http://svn.apache.org/r1547359
Log:
CMS commit to olingo by sklevenz

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

Modified: incubator/olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext
URL: http://svn.apache.org/viewvc/incubator/olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext?rev=1547359&r1=1547358&r2=1547359&view=diff
==============================================================================
--- incubator/olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext (original)
+++ incubator/olingo/site/trunk/content/doc/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext Tue Dec  3 12:08:45 2013
@@ -24,9 +24,9 @@ Some service providers would like to get
 
 A uri schema with and without service resolution is shown here: 
 
-![pic](/img/service-resolution-url.png)
+![Picture: Service Resolution](/img/service-resolution-url.png)
 
-A service inti parameter (com.sap.core.odata.path.split) can be set for servlet configuration (see web.xml) and define how many path segments are not interpreted as OData path segments. In the example the split is 2 and the resulting service resolution uses two segments for <namespace> and <service>. 
+A service inti parameter (`com.sap.core.odata.path.split`) can be set for servlet configuration (see web.xml) and define how many path segments are not interpreted as OData path segments. In the example the split is 2 and the resulting service resolution uses two segments for <namespace> and <service>. 
 
     <?xmlversion="1.0"encoding="UTF-8"?>
     <web-appxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -60,7 +60,7 @@ A service inti parameter (com.sap.core.o
        </servlet-mapping>
     </web-app>
 
-A processor implementation (e.g. ODataSingleProcessor) does have access to a ODataContext object which will deliver a ODataUriInfo object. From this class a processor implementation can access the service resolution information which is as following: 
+A processor implementation (e.g. `ODataSingleProcessor`) does have access to a `ODataContext` object which will deliver a `ODataUriInfo` object. From this class a processor implementation can access the service resolution information which is as following: 
 
 - URI: *http://localhost:8080/odata.svc/[namespace]/[system]/Room('1')/Size/$value*  
 - preceding path segments:	*[namespace], [system]*