Unrecognized xbean element mapping: beans in namespace http://xfire.codehaus.org
基于xfire方式发布webservice的时候,在启动tomcat时报错:
Unrecognized xbean element mapping: services in namespace : http://xfire.codehaus.org/config/1.0
解决方式:
将
Java代码
<beans xmlns="http://xfire.codehaus.org/config/1.0">
<service>
</service>
</beans>
改为:
Java代码
<beans>
<service xmlns="http://xfire.codehaus.org/config/1.0">
</service>
</beans>