[jboss-user] [JBoss/Spring Integration] - Re: boot strapping spring inside Jboss

hungtru do-not-reply at jboss.com
Fri Aug 29 15:25:34 EDT 2008


<?xml version="1.0" encoding="UTF-8"?>
<web-app 
	id="WebApp_ID"
	xmlns="http://java.sun.com/xml/ns/j2ee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
	version="2.4">

	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>
			/WEB-INF/acegi-config.xml
		</param-value>
	</context-param>
	
	
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	
	
	
		
		<display-name>MyServerListener</display-name>
		<listener-class>my.MyServletContextListener</listener-class>
	
	
	
	<!-- take especial notice of the name of this servlet -->
	
		<servlet-name>spring-ws</servlet-name>
		<servlet-class>
			org.springframework.ws.transport.http.MessageDispatcherServlet
		</servlet-class>
		<load-on-startup>1</load-on-startup>
	
	
	<servlet-mapping>
		<servlet-name>spring-ws</servlet-name>
		<url-pattern>/*</url-pattern>
	</servlet-mapping>
	
</web-app>

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4173407#4173407

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4173407



More information about the jboss-user mailing list