Mercurial > hg > MetaDataManagerRestlet
comparison WebContent/WEB-INF/web.xml.template @ 1:ede4c4ead6f5
properties fuer die name server in web.xml eingebaut,
zum instlalieren muss web.xml.template in web.xml umbenannt werden.
author | dwinter |
---|---|
date | Thu, 30 Jun 2011 11:21:29 +0200 |
parents | |
children | dbfd0df15a1d |
comparison
equal
deleted
inserted
replaced
0:813aa2c5bc4b | 1:ede4c4ead6f5 |
---|---|
1 <?xml version="1.0" encoding="UTF-8"?> | |
2 <web-app id="WebApp_ID" version="2.4" | |
3 xmlns="http://java.sun.com/xml/ns/j2ee" | |
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
5 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee | |
6 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> | |
7 <display-name>RESTfulJavaWebServices-Restlet</display-name> | |
8 <!-- Application classname --> | |
9 <context-param> | |
10 <param-name>org.restlet.application</param-name> | |
11 <param-value>de.mpiwg.itgroup.metaDataManagerRestlet.RestServer</param-value> | |
12 </context-param> | |
13 | |
14 <!-- Paramas for Metdatamanager --> | |
15 <context-param> | |
16 <param-name>de.mpwig.itgroup.personSearch.index</param-name> | |
17 <param-value>/Users/dwinter/Documents/Projekte/ECHO-eSciDoc-MPDL/escidocMPIWG/NamedIdentityManager/data/tripleIndex</param-value> | |
18 </context-param> | |
19 <context-param> | |
20 <param-name>de.mpwig.itgroup.personSearch.virtuoso.url</param-name> | |
21 <param-value>jdbc:virtuoso://virtuoso.mpiwg-berlin.mpg.de:1111</param-value> | |
22 </context-param> | |
23 <context-param> | |
24 <param-name>de.mpwig.itgroup.personSearch.virtuoso.user</param-name> | |
25 <param-value>dba</param-value> | |
26 </context-param> | |
27 <context-param> | |
28 <param-name>de.mpwig.itgroup.personSearch.virtuoso.pw</param-name> | |
29 <param-value>XXX</param-value> | |
30 </context-param> | |
31 <context-param> | |
32 <param-name>de.mpwig.itgroup.personSearch.virtuoso.personsGraphURI</param-name> | |
33 <param-value>file://mpiwg_persons.rdf</param-value> | |
34 </context-param> | |
35 <!-- Restletadapter --> | |
36 <servlet> | |
37 <servlet-name>RestletServlet</servlet-name> | |
38 <servlet-class> | |
39 org.restlet.ext.servlet.ServerServlet | |
40 </servlet-class> | |
41 </servlet> | |
42 | |
43 <!-- Catchallrequests --> | |
44 <servlet-mapping> | |
45 <servlet-name>RestletServlet</servlet-name> | |
46 <url-pattern>/*</url-pattern> | |
47 </servlet-mapping> | |
48 </web-app> |