~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to webservice/dhis-webservice-expoze/src/main/webapp/WEB-INF/web.xml

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 
3
  "http://java.sun.com/dtd/web-app_2_3.dtd">
 
4
<web-app>
 
5
  <display-name>DHIS WebService</display-name>
 
6
  
 
7
  <!-- Spring -->
 
8
  
 
9
  <context-param>
 
10
    <param-name>contextConfigLocation</param-name>
 
11
    <param-value>classpath*:/META-INF/dhis/beans.xml</param-value>
 
12
  </context-param>
 
13
  
 
14
  <listener>
 
15
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 
16
  </listener>
 
17
  
 
18
  <!-- Expoze -->
 
19
  
 
20
  <servlet>
 
21
    <servlet-name>SpringWebService</servlet-name>
 
22
    <servlet-class>org.amplecode.expoze.dispatcher.SpringWebServiceServletDispatcher</servlet-class>
 
23
  </servlet>
 
24
  
 
25
  <servlet-mapping>
 
26
    <servlet-name>SpringWebService</servlet-name>
 
27
    <url-pattern>*.service</url-pattern>
 
28
  </servlet-mapping>
 
29
  
 
30
</web-app>