Document Format of ResourceResource DTD<?xml encoding="UTF-8"?> <!ELEMENT resource (entity)*> <!ATTLIST resource name CDATA #REQUIRED uri CDATA #REQUIRED href CDATA #IMPLIED> <!ELEMENT entity (#PCDATA)> <!ATTLIST entity href CDATA #REQUIRED> Example of Resource<?xml version="1.0" encoding="UTF-8"?> <resource href="http://tech-ada.utt.fr/resource/original/http%3A%2F%2Ftech-ada.utt.fr%2Fresource.htm/" name="original" uri="http://tech-ada.utt.fr/resource.htm"> <entity href="http://tech-ada.utt.fr/entity/JIGSAW/" /> </resource> XML structure of Resource
Get a ResourceGet a resource. Argumentsresourceurl (Required)
Note: This method requires an HTTP GET request. Example RequestTo retrieve a resource which URL is "http://tech-ada.utt.fr/resource.htm". GET /resource/http%3A%2F%2Ftech-ada.utt.fr%2Fresource.htm/ Example Response<?xml version="1.0" encoding="UTF-8"?> <resource uri="http://tech-ada.utt.fr/resource.htm"> <entity href="http://tech-ada.utt.fr/entity/JIGSAW/" /> </resource> Status Codes200: OK
500: Internal Server Error
503: Service currently unavailable
![]() |