webservice的 Unrecognized xbean element mapping: services in namespace

基于xfire方式发布webservice的时候,在启动tomcat时报错: Unrecognized xbean element mapping: services in namespace : http://xfire.codehaus.org/config/1.0 

解决方式: 将




 
    ICategoryService2W
    http://127.0.0.1:8080/admin/services/
    com.xx.ecm.category.ICategoryService2W
    com.xx.ecm.category.managerimpl.CategoryService2W
 


改为



 
    ICategoryService2W
    http://127.0.0.1:8080/admin/services/
    com.xx.ecm.category.ICategoryService2W
    com.xx.ecm.category.managerimpl.CategoryService2W
 

你可能感兴趣的:(XFire,webservice,XFire)