如果需要在web项目中新增或者添加webservice服务时,小编的资料可以让你知道如何操作,大家赶快下载来看看哦
在web项目中怎么添加webservice 客户端
添加webservice客户端,就和你写个模块是一样的。只不过webservice是请求外部程序。
web项目不能理解为一种规范或类别。我们使用 服务对象,实现功能来将一类java项目定义为web项目,这样说的意思就是 这两者没有可比较性。
遇到的问题:
报错一:java.lang.NoClassDefFoundError: org/springframework/beans/factory/support/ReaderContext原来在tomcat上运行没有问题的程序到项目所使用的jboss4.0.3上居然报错一堆:noclassfound。看起来是找不到spring的类,查了些资料,有人说xbean-spring.jar用2.8的就可以,结果到xbean网站上只见到最新的2.6没有发现2.8,无奈,只好寻找别的方法。
在spring的cvs中查找了spring项目的早期代码,都没有发现这个类
为排除可能性,下载了别的版本的jboss单独部署演示程序没有问题,于是在项目的jboss上将项目undeploy,演示程序运行成功(期间发现jboss启动应用是按照字母排序启动的哈)
非常不解,为什么不同的war包还会互相影响
怀疑与spring版本有关:
替换项目中的spring.jar为最新的2.5.5中的jar包,无效
替换项目中的spring.jar为xfire所使用的spring1.2.6.jar,无效
替换xfire中和项目中的的spring.jar为2.5.5中的jar包,无效
无意中,在xfire的最新发布包中发现有xbean-spring2.8.jar 替换后果然不再报这个错了,却报别的错:
报错二:java.lang.IllegalArgumentException: Servlet mapping specifies an unknown servlet name SomeServletName
最后看到这个:
(http://wiki.metawerx.net/wiki/Java.lang.IllegalArgumentException)
your web.xml file has a <servlet-mapping> with no matching <servlet>. Each mapping must include a <servlet-name> that matches a <servlet-name> in a <servlet> element.
your web.xml file has a correctly matched servlet-mapping and servlet element, but the servlet-mapping appears before the servlet. The servlet-mapping must appear below the servlet, because the file is parsed in order.
在web.xml查看了一下,果然是后一种情况,调整顺序后,不报这个错了,接着报下一个错:
报错三:Unrecognized xbean element mapping: beans in namespace http://xfire.codehaus.org/config/1.0
还好一下子就找到一篇文章说这个:http://www.blogjava.net/XXNiuLang/archive/2007/08/15/136952.html
不过遗憾的是,按照这个文章做,并没有解决我的问题
但在另外一篇文章中看到(http://www.jumpingbean.co.za/blogs/mark/xfire_spring_bug):Basically XFire needs an earlier version of spring to work. I ended up using spring 1.2.8 but I assume any spring version before 2.0 would work.
将项目中的spring包替换为xfire发布包中的1.2.6,哈,成功!