~ubuntu-branches/ubuntu/wily/libjboss-remoting-java/wily

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/performance/spring/hessian/web/WEB-INF/remoting-servlet.xml

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8" ?>
2
 
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
3
 
 
4
 
<!--
5
 
  - DispatcherServlet application context for Petclinic's web tier.
6
 
        -->
7
 
<beans>
8
 
   <bean id="springHessianServerService" class="org.jboss.test.remoting.performance.spring.hessian.web.SpringHessianServerImpl"/>
9
 
 
10
 
   <bean name="/springHessianServerService" class="org.springframework.remoting.caucho.HessianServiceExporter">
11
 
       <property name="service" ref="springHessianServerService"/>
12
 
       <property name="serviceInterface" value="org.jboss.test.remoting.performance.spring.hessian.web.SpringHessianServer"/>
13
 
   </bean>
14
 
 
15
 
   <bean id="beanMapping" class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping">
16
 
       <property name="order"><value>1</value></property>
17
 
   </bean>
18
 
   
19
 
</beans>