Changes between Version 32 and Version 33 of FCS-Specification-ScrapBook


Ignore:
Timestamp:
02/11/14 17:17:20 (10 years ago)
Author:
oschonef
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FCS-Specification-ScrapBook

    v32 v33  
    402402Is mapped to SRU ''!SearchRetrieve'' operation. Yada yada ...
    403403
     404== Appendix: Non-normative
     405
     406The following sections are non-normative.
     407
     408=== Referring to an Endpoint from a CMDI record
     409
     410Centers are encouraged to provide links to their CLARIN-FCS Endpoints in the metadata records for their resources. Other services, like the VLO, can use this information for automatically configuring an Aggregator for searching resources at the Endpoint.
     411   
     412To refer to an Endpoint a `<cmdi:ResourceProxy>` with `<cmdi:ResourceType>` set to the value `SearchService` and a `@mimetype` attribute with a value of `application/sru+xml` need to be added to the CMDI record. The content of the `<cmdi:ResourceRef>` element must contain an URI that points to the Endpoint web service.
     413
     414 * Example:
     415{{{#!xml
     416<CMD xmlns="http://www.clarin.eu/cmd/" CMDVersion="1.1">
     417  <!-- ...  -->
     418  <Resources>
     419    <ResourceProxyList>
     420      <!-- ... -->
     421      <ResourceProxy id="r4711">
     422        <ResourceType mimetype="application/sru+xml">SearchService</ResourceType>
     423        <ResourceRef>http://repos.example.org/fcs-endpoint</ResourceRef>
     424      </ResourceProxy>
     425      <!-- ... -->
     426    </ResourceProxyList>
     427  </Resources>
     428  <!-- ... -->
     429</CMD>
     430}}}
     431
     432
    404433----