XQRS - XQuery API for RESTful Web Services
It's fast, scales and is light weight at around 1.1k lines of code. You can seamlessly add it to your existing project without it interfering. Support is available on GitHub. RESTXQ enables you to build RESTful services declaratively with XQuery Annotations in the same way as JAX-RS does for Java.
- Supports Read Only / Update Functions
- Supports Multi-Statement Transactions
- Supports Multiple-File uploads from HTML5 Forms
- Supports multipart/mixed requests
- Supports XML, JSON, RDF (all formats), SPARQL Results (all formats)
- Supports Path expressions defined by Regular Expressions
- Supports Content Negotiation and Quality Factors in Accept Headers
- Well Documented with plenty of examples
- Supports Error Handler Functions
- Very Robust. Built against a very rich Test Suite
- 100% Free, Open Source, Apache 2.0 Licence
Create RESTful Services with URIs that work exactly how you want them to
declare
%rest:path("/factory/warehouse/wheel/{$wheel-id}")
%rest:GET
function get-wheel($wheel-id as xs:string) {
fn:doc($wheel-id)
};
declare
%rest:path("/factory/warehouse/wheel/{$wheel-id}")
%rest:PUT("{$doc}")
%xdmp:update
function put-wheel($wheel-id as xs:string, $doc as document-node(element())) {
xdmp:document-insert($wheel-id, $doc, map:entry("collections", "wheels"))
};
declare
%rest:path("/factory/warehouse/wheel")
function list-wheels() {
<wheels>{
fn:collection("wheels")
}</wheels>
};
There are some basic examples here on this GitHub README. Full Documentation is available on the website.
declare
%rest:path("/control-suffix/{$a}/{$b=.+}")
function control-suffix($a as xs:string, $b as xs:string) as xs:string {
string-join(($a, $b), ',')
};
declare
%rest:path("{$entire-uri=.+}")
function total-control($entire-uri as xs:string) {
$entire-uri
};
Method Annotations GET
, HEAD
, POST
, PUT
, DELETE
, OPTIONS
, PATCH
declare
%rest:path("/factory/warehouse/wheel/{$wheel-id}")
%rest:POST
function put($wheel-id as xs:string) {
create-wheel($wheel-id)
};
declare
%rest:path("/factory/warehouse/wheel/{$wheel-id}")
%rest:DELETE
function delete($delete-id as xs:string) {
delete-wheel($wheel-id)
};
declare
%rest:path("/factory/warehouse/wheel/{$wheel-id}")
%rest:GET
function get($delete-id as xs:string) {
get-wheel($wheel-id)
};
declare
%rest:path("/query-some-triples")
%rest:POST("{$rdf-data}")
function query-some-triples($rdf as sem:triple*) {
sem:sparql(
"SELECT * WHERE { ?a ?b ?c }", (), (),
sem:in-memory-store($rdf)
)
};
declare
%rest:path("/{$uri}")
%rest:PUT("{$json-data}")
function insert-json($json-data as document-node(object-node()), $uri as xs:string) {
xdmp:document-insert($uri, $json-data),
"Thanks"
};
declare
%rest:path("/get-resource")
%rest:produces("application/json") (: Client Accept Header :)
function json-response() {
array-node { 1, 2, 3, 4 }
};
declare
%rest:path("/get-resource")
%rest:produces("text/xml", "application/xml") (: Client Accept Header :)
function xml-response() {
<data>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
</data>
};
declare
%rest:path("/search")
%rest:query-param-1('query', '{$q}')
%rest:query-param-2('from', '{$from}', 1)
%rest:query-param-3('to', '{$to}', 10)
function perform-search(
$q as xs:string,
$from as xs:integer,
$to as xs:integer) {
<results>{
cts:search(fn:doc(), cts:parse($q))[$from to $to]
}</results>
};
declare
%rest:path("/get.ttl")
%output:method("turtle")
function turtle() as sem:triple* {
muh:triples()
};
declare
%rest:path("/get.n3")
%output:method("n3")
function n3() as sem:triple* {
muh:triples()
};
declare
%rest:path("/get.xml")
%output:method("xml")
%output:encoding("iso-8859-1")
%output:indent("yes")
%output:media-type("application/special+xml")
function get-xml() {
muh:xml()
};