|
Yes, it is a
file. anyway the application is working on jboss this is the web.xml ======================== <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.4" 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"> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext*.xml</param-value> </context-param> <servlet> <servlet-name>MyAppweb</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <listener> <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class> </listener> <servlet-mapping> <servlet-name>MyAppweb</servlet-name> <url-pattern>*.htm</url-pattern> </servlet-mapping> <filter> <filter-name>Acegi Filter Chain Proxy</filter-name> <filter-class>org.acegisecurity.util.FilterToBeanProxy</filter-class> <init-param> <param-name>targetClass</param-name> <param-value>org.acegisecurity.util.FilterChainProxy</param-value> </init-param> </filter> <filter> <filter-name>sitemesh</filter-name> <filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class> <init-param> <param-name>debug.pagewriter</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>Acegi Filter Chain Proxy</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <filter-mapping> <filter-name>sitemesh</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <resource-ref> <description>datasource</description> <res-ref-name>jdbc/MyAppDS</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> <resource-ref> <description>datasource</description> <res-ref-name>mail/DefaultMail</res-ref-name> <res-type>javax.mail.Session</res-type> <res-auth>Container</res-auth> </resource-ref> </web-app> David Jencks wrote:
|
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot Kevan Miller
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot Kevan Miller
- Re: Problem at geronimo boot Viet Nguyen
- Re: Problem at geronimo boot Kevan Miller
- Re: Problem at geronimo boot Viet Nguyen
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot David Jencks
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot Kevan Miller
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot Kevan Miller
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot Viet Nguyen
- Re: Problem at geronimo boot Viet Nguyen
- Re: Problem at geronimo boot Paolo Denti
- Re: Problem at geronimo boot Kevan Miller
- Re: Problem at geronimo boot Paolo Denti
