Skip to content
Dimitris Kontokostas edited this page Jul 3, 2014 · 4 revisions

RDFUnit as a Web Service

The RDFUnit web service uses the exact same arguments as the CLI. To run it from maven just run

# from root folder
mvn -pl rdfunit-validate -am clean install jetty:run

# or
mvn clean install
cd rdfunit-validate
mvn jetty:run

to deploy it in a server as war copy the war file from rdfunit-validate/target/ folder after doing the following:

# from root folder
mvn -pl rdfunit-validate -am clean install package

# or
mvn clean install
cd rdfunit-validate
mvn package

Note: The Web Service is not optimized at the moment for concurrent & sequential use. Every time we reload / regenerate all test cases for the given schemas

Clone this wiki locally