forked from OData/odataorg.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reference-service.html
110 lines (107 loc) · 4.02 KB
/
reference-service.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
layout: page
title: Reference Services
date: 2014-02-20 06:56:35.000000000 +08:00
permalink: /odata-services/
---
<ul class="nav nav-pills">
<li class="active">
<a href="#odata-v4" data-toggle="pill">OData v4</a>
</li>
<li class="hide">
<a href="#v4" data-toggle="pill">OData v4</a>
</li>
<li>
<a href="#v3" data-toggle="pill">OData v3</a>
</li>
<li>
<a href="#v2" data-toggle="pill">OData v2</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="odata-v4">
<table class="table table-striped table-condensed table-hover">
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="http://services.odata.org/TripPinRESTierService">TripPin(read/write)</a></td>
<td>
This OData V4 sample service is built with <a href="http://odata.github.io/RESTier/">Restier</a>
which is a turn-key library for building RESTful services,
it covers most V4 features and its source code is located at
<a href="https://github.com/OData/RESTier/tree/master/test/ODataEndToEnd/Microsoft.OData.Service.Sample.TrippinInMemory">this link</a>.
</td>
</tr>
</table>
<div class="" id="service-usages">
{% capture my-include %}{% include_relative service-usages/basic-usages.md %}{% endcapture %}
{{ my-include | markdownify }}
</div>
</div>
<div class="tab-pane hide" id="v4">
<table class="table table-striped table-condensed table-hover">
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="http://services.odata.org/V4/TripPinServiceRW">TripPin (read/write)</a></td>
<td>The new OData V4 service designed for real scenarios and covering most V4 features.</td>
</tr>
<tr>
<td><a href="http://services.odata.org/V4/OData/OData.svc">OData (read only)</a></td>
<td>A simple OData v4 service optimized for quick browser demos.</td>
</tr>
<tr>
<td><a href="http://services.odata.org/V4/(S(readwrite))/OData/OData.svc/">OData (read/write)</a></td>
<td>A simple OData v4 service optimized for quick browser demos.</td>
</tr>
<tr>
<td><a href="http://services.odata.org/V4/Northwind/Northwind.svc">Northwind (read only)</a></td>
<td>A simple OData v4 service optimized for quick browser demos.</td>
</tr>
</table>
</div>
<div class="tab-pane" id="v3">
<table class="table table-striped table-condensed table-hover">
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="http://services.odata.org/V3/OData/OData.svc">OData (read only)</a></td>
<td>A simple OData v3 service optimized for quick browser demos.</td>
</tr>
<tr>
<td><a href="http://services.odata.org/V3/(S(readwrite))/OData/OData.svc/">OData (read/write)</a></td>
<td>A simple OData v3 service optimized for quick browser demos.</td>
</tr>
<tr>
<td><a href="http://services.odata.org/V3/Northwind/Northwind.svc">Northwind (read only)</a></td>
<td>A simple OData v3 service optimized for quick browser demos.</td>
</tr>
</table>
</div>
<div class="tab-pane" id="v2">
<table class="table table-striped table-condensed table-hover">
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="http://opendatasalutedata.cloudapp.net/v1/datacatalog/">Italy Ministry of Health Open Data Portal</a></td>
<td>Open data portal of the Italian Ministry of Health running on OGDI DataLab and Windows Azure.</td>
</tr>
<tr>
<td><a href="http://services.odata.org/V2/(S(readwrite))/OData/OData.svc/">OData (read/write)</a></td>
<td>A simple OData v2 service optimized for quick browser demos.</td>
</tr>
<tr>
<td><a href="http://services.odata.org/V2/Northwind/Northwind.svc">Northwind (read only)</a></td>
<td>A simple OData v2 service optimized for quick browser demos.</td>
</tr>
</table>
</div>
</div>