]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/modules/org.argeo.server.rap.webapp/WEB-INF/service-servlet.xml
Make HTTP realm name configurable
[lgpl/argeo-commons.git] / server / modules / org.argeo.server.rap.webapp / WEB-INF / service-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 xsi:schemaLocation="
5 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
6 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
7 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
8
9
10 <bean id="urlMapping"
11 class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
12 <property name="mappings">
13 <props>
14 <prop key="*">osgiServiceController</prop>
15 </props>
16 </property>
17 </bean>
18
19 <bean id="osgiServiceController"
20 class="org.springframework.web.servlet.mvc.ServletWrappingController">
21 <property name="servletClass">
22 <value>org.eclipse.equinox.http.servlet.HttpServiceServlet</value>
23 </property>
24 <property name="servletName">
25 <value>osgiService</value>
26 </property>
27 </bean>
28 </beans>