-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathweb.xml
55 lines (55 loc) · 2.2 KB
/
web.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0"
id="atomgraph-core">
<display-name>AtomGraph Core</display-name>
<description>Generic Linked Data framework</description>
<servlet>
<servlet-name>com.atomgraph.core.Application</servlet-name>
<!--
<init-param>
<param-name>http://www.w3.org/ns/sparql-service-description#endpoint</param-name>
<param-value>http://localhost:3030/ds</param-value>
</init-param>
<init-param>
<param-name>https://w3id.org/atomgraph/core#graphStore</param-name>
<param-value>http://localhost:3030/ds</param-value>
</init-param>
-->
<!--
<init-param>
<param-name>https://w3id.org/atomgraph/core#authUser</param-name>
<param-value>username</param-value>
</init-param>
<init-param>
<param-name>https://w3id.org/atomgraph/core#authPwd</param-name>
<param-value>password</param-value>
</init-param>
-->
<init-param>
<param-name>https://w3id.org/atomgraph/core#preemptiveAuth</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>https://w3id.org/atomgraph/core#cacheControl</param-name>
<param-value>no-cache</param-value>
</init-param>
<init-param>
<param-name>https://w3id.org/atomgraph/core#resultLimit</param-name>
<param-value>100</param-value>
</init-param>
<init-param>
<param-name>https://w3id.org/atomgraph/core#maxGetRequestSize</param-name>
<param-value>8192</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>com.atomgraph.core.Application</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<listener>
<listener-class>com.atomgraph.core.util.jena.StartupListener</listener-class>
</listener>
</web-app>