You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dimitris Kontokostas edited this page Aug 30, 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.
We plan to heavily refactor the test generation process.