Apache/tomcat is complaining about my Web Flow configuration file:
I'm using spring-webflow-2.0-m3.zipCode:INFO: Initializing Spring FrameworkServlet 'onlineEndr' Jan 25, 2008 2:25:21 PM org.apache.catalina.core.ApplicationContext log SEVERE: StandardWrapper.Throwable org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate NamespaceHandler for namespace [http://www.springframework.org/schema/webflow-config] Offending resource: ServletContext resource [/WEB-INF/webflow-config.xml]
the /WEB-INF/webflow-config.xml is:
I'm not familiar with namespace resolution, but this doesn't look like a Spring related problem - or is it?Code:<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:flow="http://www.springframework.org/schema/webflow-config" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/webflow-config http://www.springframework.org/schema/webflow-config/spring-webflow-config-1.0.xsd"> <!-- Launches new flow executions and resumes existing executions. --> <flow:executor id="flowExecutor" registry-ref="flowDefinitionRegistry" /> <!-- Creates the registry of flow definitions for this application --> <flow:registry id="flowDefinitionRegistry"> <flow:location path="/WEB-INF/flows/**-flow.xml" /> </flow:registry> </beans>
Thanks for any help.


Reply With Quote