Skip to content
architolk edited this page Mar 4, 2017 · 14 revisions

#Linked Data Theatre This tutorial will explain in detail how to use and configure the Linked Data Theatre. We will start with a most basic configuration (the infamous "hello world" application) and go into more detail from their. Please look at the sidebar if you're more into self-discovery or are in need for information about a particular appearance.

Stage and site configuration

Every Linked Data Theatre contains at least one site and one stage. A site corresponds with a particular website (like www.mydoman.com, www.example.org or even localhost). It is important to note that the site also includes the port number (so localhost:8080 is a different site than localhost:8888).

Every site has at least one stage. The mainstage corresponds with the root of a site, any other site correponsd with the first part after the domain name (for example: localhost:8080\stage-one or localhost:8080\stage-two).

The file WEB-INF/resource/apps/ld/config.xml contains the configuration of sites and stages. For this tutorial we will use the default config:

<theatre configuration-endpoint="http://localhost:8890/sparql" local-endpoint="http://localhost:8890/sparql" sparql="yes">
	<site domain="http://localhost:8080" backstage="http://localhost:8080>
		<stage /> <!-- mainstage -->
	</site>
</theatre>
Clone this wiki locally