V3RC
AVI Tags
XUpload Test
Web Services
First Service: a simple Hello World web service
All AVI IDs: returns an array with the IDs of all the AVIs in V3RC
All AVI IDs and titles: returns xml with the ids and titles in the form
<aviTitles>
<avi>
<id>ID</id>
<title>TITLE</title>
</avi>
...
</aviTitles>
Simple Search (v3rc_client_simpleSearch.cgi): returns xml with the ids, titles, keywords and descriptions
Request should be in the form:
<parameters>
<title>TITLE</title>
<author>AUTHOR</author>
<keywords>KEYWORDS (comma seperated)</keywords>
</parameters>
Result is in the form:
<resource_list>
<resource>
<id>ID</id>
<avititle>TITLE</avititle>
<keywords>KEYWORDS</keywords>
<description>DESCRIPTION</description>
<language>LANGUAGE</language>
...
<language>LANGUAGE</language>
</resource>
...
...
</resource>
<resource_list>
See example
EXAMPLE of the web service call:
my $soap = SOAP::Lite
-> uri('http://v3.zmml.uni-bremen.de/v3rc')
-> proxy('http://v3.zmml.uni-bremen.de/webServices/v3rc.cgi')
-> simpleSearch("<parameters><title>TITLE</title><author>AUTHOR</author><keywords>KEYWORDS</keywords></parameters>");
Show ID Card: returns xml with all the information found in the ID card of the resource
Required is the id of the resource
See example