You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcube-ckan-datacatalog/src/main/webapp/WEB-INF/web.xml

33 lines
905 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<context-param>
<param-name>CkanConnectorContext</param-name>
<!-- <param-value>/connect</param-value> -->
<param-value>/gcube/service/connect</param-value>
</context-param>
<!-- Servlets -->
<servlet>
<servlet-name>gcubeckandatacatalogservice</servlet-name>
<servlet-class>org.gcube.portlets.gcubeckan.gcubeckandatacatalog.server.GcubeCkanDataCatalogServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>gcubeckandatacatalogservice</servlet-name>
<url-pattern>/gCubeCkanDataCatalog/ckandatacatalogue</url-pattern>
</servlet-mapping>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>GCubeCkanDataCatalog.html</welcome-file>
</welcome-file-list>
</web-app>