hi guys
I am using spring blazeds integration 1.5.0.M1 with spring 3.0
This is my flex servlet
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:flex="http://www.springframework.org/schema/flex"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schem...-beans-3.0.xsd
http://www.springframework.org/schema/flex
http://www.springframework.org/schema/flex/spring-flex-1.0.xsd">
<flex:message-broker>
<flex:message-service
default-channels="my-streaming-amf,my-longpolling-amf,my-polling-amf" />
<flex:secured />
</flex:message-broker>
....and so on..
I have spring-flex-core-1.5.0.M1-sources.jar and spring-integration-core-1.0.3.RELEASE.jar in my classpath. (do i need anything else?)
when my server starts i get this error on the above flex servlet
org.springframework.beans.factory.BeanDefinitionSt oreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/flex-servlet.xml];
nested exception is org.springframework.beans.FatalBeanException: NamespaceHandler class [org.springframework.flex.config.xml.FlexNamespaceH andler] for namespace [http://www.springframework.org/schema/flex] not found;
nested exception is java.lang.ClassNotFoundException: org.springframework.flex.config.xml.FlexNamespaceH andler
at org.springframework.beans.factory.xml.XmlBeanDefin itionReader.doLoadBeanDefinitions(XmlBeanDefinitio nReader.java:412)
am i missing something?
Thanks


Reply With Quote
