]> git.argeo.org Git - gpl/argeo-slc.git/blob - modules/server/org.argeo.slc.server.repo.webapp/WEB-INF/maven-servlet.xml
Update default timeout to 2 minutes (from 10s)
[gpl/argeo-slc.git] / modules / server / org.argeo.slc.server.repo.webapp / WEB-INF / maven-servlet.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
4 xmlns:context="http://www.springframework.org/schema/context"
5 xsi:schemaLocation="
6 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
8 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
9
10 <bean
11 class="org.springframework.web.servlet.handler.SimpleServletPostProcessor" />
12
13 <bean id="servletHandler"
14 class="org.springframework.web.servlet.handler.SimpleServletHandlerAdapter" />
15
16 <bean id="handlerMapping"
17 class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
18 <property name="mappings">
19 <props>
20 <prop key="*">companyRemoteService</prop>
21 </props>
22 </property>
23 </bean>
24
25 <bean id="mavenProxyServlet"
26 class="com.somecompany.gwt.server.servicesimpl.CompanyRemoteServiceImpl" />
27
28 </beans>