Mercurial > hg > AnnotationManager
diff src/main/webapp/WEB-INF/web.xml.template @ 23:a3e324009990
now Mavenified!
removed tiny-mce javascript from html frontend.
still needs TripleStoreManager project in Eclipse.
jsontoken 1.1 has to be built manually.
author | casties |
---|---|
date | Tue, 03 Apr 2012 13:05:05 +0200 |
parents | WebContent/WEB-INF/web.xml.template@9393c9c9b916 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/webapp/WEB-INF/web.xml.template Tue Apr 03 13:05:05 2012 +0200 @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<web-app id="WebApp_ID" version="2.4" +xmlns="http://java.sun.com/xml/ns/j2ee" +xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee +http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> + <display-name>RESTfulJavaWebServices-Restlet</display-name> + <!-- Application classname --> + <context-param> + <param-name>org.restlet.application</param-name> + <param-value>de.mpiwg.itgroup.annotationManager.restlet.RestServer</param-value> + </context-param> + <context-param> + <param-name>de.mpiwg.itgroup.annotationManager.jaas.configFilePath</param-name> + <param-value>file:///etc/jaasAuth.conf</param-value> + </context-param> + <context-param> + <param-name>de.mpiwg.itgroup.annotationManager.virtuoso.tripleStoreUser</param-name> + <param-value>USERNAME</param-value> + </context-param> + <context-param> + <param-name>de.mpiwg.itgroup.annotationManager.virtuoso.tripleStoreUserPassword</param-name> + <param-value>PASSWORD</param-value> + </context-param> + <context-param> + <param-name>de.mpiwg.itgroup.annotationManager.virtuoso.tripleStoreConnectionURL</param-name> + <param-value>jdbc:virtuoso://virtuoso.mpiwg-berlin.mpg.de:1111</param-value> + </context-param> + <!-- Restletadapter --> + <servlet> + <servlet-name>RestletServlet</servlet-name> + <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class> + </servlet> + <!-- Catchallrequests --> + <servlet-mapping> + <servlet-name>RestletServlet</servlet-name> + <url-pattern>/annotator/*</url-pattern> + </servlet-mapping> +</web-app> \ No newline at end of file