I do not use a service.xml file, instead I am configuring everything through a Spring configuration XML file, listed below:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> <!-- Service bean for example web service --> <bean id="exampleService" class="com.mycom.myproject.service.ExampleServiceImpl" /> <!-- XFire exporter which exposes the exampleService bean as a web service --> <bean name="/ExampleService" class="org.codehaus.xfire.spring.remoting.XFireExporter"> <property name="service" ref="exampleService"/> <property name="serviceInterface" value="com.mycom.myproject.service.ExampleService"/> <property name="serviceBuilder" ref="xfire.serviceBuilder"/> <property name="xfire" ref="xfire"/> </bean> </beans> Does anything look amiss? --James Tomek Sztelak wrote: > > Hi > Can you show us your service.xml ? > You can also ( as a workaround or not :) replace your service.xml > with plain spring xml config. All tags you can see in service.xml like > <service> are mapped to classes from xfire-spring module, like > ServiceBean. so its quite easy to rewrite service.xml file. > > On 2/12/07, James Adams <[EMAIL PROTECTED]> wrote: >> >> I am trying out XFire with Spring and I have run into a wall, which I >> think >> has something to do with JAR dependencies. >> >> I am using xfire-all-1.2.4, xbean-spring-2.8, wstx-asl-3.1.1, and >> spring-2.0.2. These dependencies are specified in my Maven pom.xml. >> >> The error I get when I deploy my application in Tomcat 5.5.20 is with >> creating the namespace handler for v2b, with a root cause of not being >> able >> to find the class org/springframework/beans/factory/support/ReaderContext >> (I >> have checked the Spring JAR, and this class is absent). >> >> Below is the error stack trace. >> [code] >> java.lang.IllegalStateException: Unable to create namespace handler for: >> v2b >> at >> org.apache.xbean.spring.context.v2.XBeanV2Helper.createNamespaceHandler(XBeanV2Helper.java:48) >> at >> org.apache.xbean.spring.context.v2.XBeanNamespaceHandler.<init>(XBeanNamespaceHandler.java:41) >> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native >> Method) >> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown >> Source) >> at >> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown >> Source) >> at java.lang.reflect.Constructor.newInstance(Unknown Source) >> at >> org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:84) >> at >> org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:60) >> at >> org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver.initHandlerMappings(DefaultNamespaceHandlerResolver.java:122) >> at >> org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver.<init>(DefaultNamespaceHandlerResolver.java:96) >> at >> org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver.<init>(DefaultNamespaceHandlerResolver.java:82) >> at >> org.springframework.beans.factory.xml.XmlBeanDefinitionReader.createDefaultNamespaceHandlerResolver(XmlBeanDefinitionReader.java:526) >> at >> org.springframework.beans.factory.xml.XmlBeanDefinitionReader.createReaderContext(XmlBeanDefinitionReader.java:515) >> at >> org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions(XmlBeanDefinitionReader.java:495) >> at >> org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:390) >> at >> org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:340) >> at >> org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:317) >> at >> org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:125) >> at >> org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:141) >> at >> org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:123) >> at >> org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:91) >> at >> org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:94) >> at >> org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:292) >> at >> org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:156) >> at >> org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246) >> at >> org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:184) >> at >> org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:49) >> at >> org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3763) >> at >> org.apache.catalina.core.StandardContext.start(StandardContext.java:4211) >> at >> org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759) >> at >> org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739) >> at >> org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524) >> at >> org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:809) >> at >> org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:698) >> at >> org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:472) >> at >> org.apache.catalina.startup.HostConfig.start(HostConfig.java:1122) >> at >> org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310) >> at >> org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119) >> at >> org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1021) >> at >> org.apache.catalina.core.StandardHost.start(StandardHost.java:718) >> at >> org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013) >> at >> org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442) >> at >> org.apache.catalina.core.StandardService.start(StandardService.java:450) >> at >> org.apache.catalina.core.StandardServer.start(StandardServer.java:709) >> at org.apache.catalina.startup.Catalina.start(Catalina.java:551) >> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) >> at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) >> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown >> Source) >> at java.lang.reflect.Method.invoke(Unknown Source) >> at >> org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294) >> at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432) >> Caused by: java.lang.NoClassDefFoundError: >> org/springframework/beans/factory/support/ReaderContext >> at java.lang.Class.forName0(Native Method) >> at java.lang.Class.forName(Unknown Source) >> at >> org.apache.xbean.spring.context.v2.XBeanV2Helper.createNamespaceHandler(XBeanV2Helper.java:45) >> [/code] >> >> If anyone can comment I'd appreciate your insight. Thanks in advance. >> >> >> --James >> -- >> View this message in context: >> http://www.nabble.com/Spring---XFire%3A-Unable-to-create-the-namespace-handler-for-v2b-tf3213558.html#a8924099 >> Sent from the XFire - User mailing list archive at Nabble.com. >> >> >> --------------------------------------------------------------------- >> To unsubscribe from this list please visit: >> >> http://xircles.codehaus.org/manage_email >> >> > > > -- > ----- > When one of our products stops working, we'll blame another vendor > within 24 hours. > > --------------------------------------------------------------------- > To unsubscribe from this list please visit: > > http://xircles.codehaus.org/manage_email > > > -- View this message in context: http://www.nabble.com/Spring---XFire%3A-Unable-to-create-the-namespace-handler-for-v2b-tf3213558.html#a8935745 Sent from the XFire - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
