スキーマへのアクセス
最終更新日: 2010年4月7日
適用対象: SharePoint Server 2010
このトピックでは、Excel Services の REST サービスのためのスキーマにアクセスして表示する方法の一例を示します。ここでは、Excel Services REST API のためのサンプル URIを既に読んだことを前提とします。
スキーマの表示
以下のように、ブラウザーのアドレス バーに、Atom XML フィードを示す URI を入力します。
http://myserver/_vti_bin/ExcelRest.aspx/Docs/Documents/sampleWorkbook.xlsx/model/Ranges('Sheet1!A1|H3')?$format=atom
Web ページを右クリックして、次に [HTML ソースの表示] をクリックします。
以下の例のようなスキーマが表示されます。
<?xml version="1.0" encoding="utf-8"?>
<entry xml:base="http://excel.live.com/REST" xmlns:x="https://schemas.microsoft.com/office/2008/07/excelservices/rest" xmlns:d="https://schemas.microsoft.com/ado/2007/08/dataservice" xmlns:m="https://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
<title type="text">Sheet1!A1:H3</title>
<id>http://myserver/_vti_bin/ExcelRest.aspx/Docs/Documents/sampleWorkbook.xlsx/model/Ranges('Sheet1!A1%7CH3')</id>
<updated>2009-06-25T00:41:37Z</updated>
<author>
<name />
</author>
<link rel="self" href="http://myserver/_vti_bin/ExcelRest.aspx/Docs/Documents/sampleWorkbook.xlsx/model/Ranges('Sheet1!A1%7CH3')?$format=atom" title="Sheet1!A1:H3" />
<category term="ExcelServices.Range" scheme="https://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<x:range name="Sheet1!A1:H3">
<x:row>
<x:c>
<x:fv>Name </x:fv>
</x:c>
<x:c>
<x:fv>Name </x:fv>
</x:c>
<x:c>
<x:fv>Exchange </x:fv>
</x:c>
<x:c>
<x:fv>Symbol </x:fv>
</x:c>
<x:c>
<x:fv>Last Trade </x:fv>
</x:c>
<x:c />
<x:c>
<x:fv>Change </x:fv>
</x:c>
<x:c>
<x:fv>Mkt Cap</x:fv>
</x:c>
</x:row>
<x:row>
<x:c>
<x:fv>Microsoft Corporation </x:fv>
</x:c>
<x:c>
<x:fv>Microsoft Corporation </x:fv>
</x:c>
<x:c>
<x:fv> </x:fv>
</x:c>
<x:c>
<x:fv>MSFT </x:fv>
</x:c>
<x:c>
<x:v>26.25</x:v>
<x:fv>26.25</x:fv>
</x:c>
<x:c />
<x:c>
<x:fv>-0.23 (-0.87%) </x:fv>
</x:c>
<x:c>
<x:v>239670000000</x:v>
<x:fv> $239,670,000,000 </x:fv>
</x:c>
</x:row>
<x:row>
<x:c />
<x:c />
<x:c>
<x:fv> </x:fv>
</x:c>
<x:c />
<x:c>
<x:v>15.58</x:v>
<x:fv>15.58</x:fv>
</x:c>
<x:c />
<x:c>
<x:fv>-1.38 (-8.14%) </x:fv>
</x:c>
<x:c>
<x:v>21590000000</x:v>
<x:fv> $21,590,000,000 </x:fv>
</x:c>
</x:row>
</x:range>
</content>
</entry>