因项目要用到web service技术,所以学习了一下,xfire已经成了cxf了,看来只能用cxf框架来实现了(axis不考虑),好像weblogic平台有自己的web service框架。 
我参考 了一下这位大师的例子: 
http://blog.csdn.net/pengchua/archive/2008/07/30/2740572.aspx 我把<import resource="classpath:META-INF/cxf/cxf.xml" />      <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />      <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />  这几个文件都放好了。用的cxf是2.0版本的。 目前整合时出错如下:2009-05-22 16:30:45,569 ERROR [StandardContext.java-3733]: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener 
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://cxf.apache.org/jaxws] 
Offending resource: class path resource [config/spring-cxf.xml] http://cxf.apache.org/jaxws,这个地址确实 访问 不了。 
我的web.xml一部分为: <?xml version="1.0" encoding="UTF-8"?> 
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <context-param> 
<param-name>contextConfigLocation</param-name> 
<param-value> 
classpath:config/applicationContext.xml, 
classpath:config/spring-cxf.xml 
</param-value> </context-param> 
<!-- start struts2  --> 
<filter> 
<filter-name>struts2</filter-name> 
<filter-class> 
org.apache.struts2.dispatcher.FilterDispatcher 
</filter-class> 
</filter> <filter-mapping> 
<filter-name>struts2</filter-name> 
<url-pattern>/*</url-pattern> 
</filter-mapping> 
<servlet>  
    <servlet-name>CXFServlet</servlet-name>  
    <servlet-class>  
        org.apache.cxf.transport.servlet.CXFServlet   
    </servlet-class>  
</servlet>  
<servlet-mapping>  
    <servlet-name>CXFServlet</servlet-name>  
    <url-pattern>/services/*</url-pattern>  
</servlet-mapping>  spring-cxf.xml为: 
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xmlns:jaxws="http://cxf.apache.org/jaxws" 
      xmlns:soap="http://cxf.apache.org/bindings/soap" 
      xsi:schemaLocation=" 
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd 
http://cxf.apache.org/bindings/soap 
http://cxf.apache.org/schemas/configuration/soap.xsd 
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">     <import resource="classpath:META-INF/cxf/cxf.xml" />      <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />      <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />        <bean id="hello" class="demo.hw.server.HelloWorldImpl" />      <jaxws:endpoint id="helloWorld" implementor="#hello"          address="/HelloWorld" />    </beans> 跟那位大师是一样的。完全抄他的例子。但就是报那个错误。 哪位兄弟知道啊,????