weblogic+cxf环境下报错
由于项目需要要学webservice,一开始就遇到这个异常;
org.apache.cxf.interceptor.Fault: Could not send Message.
at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:64)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:220)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)
at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)
at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:171)
at $Proxy11.sayHello(Unknown Source)
at com.test.cxf.Client.main(Client.java:18)
Caused by: java.net.HttpRetryException: cannot retry due to server authentication, in streaming mode
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.HttpURLConnection.getResponseCode(Unknown Source)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1900)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1828)
at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)
at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:590)
at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
... 7 more
以下为客户端调用webservice的代码:
public String caculateYaocjh(){
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean ();
factory.setServiceClass(IYaoHLJhService.class);
factory.setAddress("http://localhost:8085/athena/services/yaocjhService");
try{
IYaoHLJhService hs= (IYaoHLJhService) factory.create();
hs.createYaoHLJhMx();
} catch (Exception e) {
throw new ActionException(e.getMessage());
}
//消息
Map<String, String> message = new HashMap<String, String>();
message.put("message", "webService自动调度要车计算完成");
setResult("result",message);
return AJAX;
}
网上有很多说法:
比如:
spring cxf 异常:
有两个原因:
-
客户端的接口的包名(或者接口名)和服务端的包名(或者接口名)不一致
- 客户端的接口没有加上@Webservice注解
比如:
让sun的https handler优先加载;
为程序添加weblog.xml配置文件;
这些都没有解决我的问题,最后看到一篇好文章,解决了我的问题。
这一点要知道:
目前最新规范是 JAX-WS(区别与JAX-RPC),可以下载jaxws-ri(sun的参考实现)学习(samples/fromwsdl)。基本原理了解后,具体开发依赖于你选择的开发平台,Apache CXF、Apache Axis2,weblogic,websphere都有相应的处理方法。其中Weblogic11g是基于jaxws-ri的,他们是一家的。
webservice与xfire实现的网上有很多,都是正确的。
这个讲得很全,见:http://atomti.iteye.com/blog/476408
webservice与CXF的这个讲得很全,见:http://blog.csdn.net/cyf_cyf/article/details/7187911
我的错误问题在这里:
factory.setAddress("http://localhost:8085/athena/services/yaocjhService");
将这一句代码改为下面的形式就可以正确执行了:
factory.setAddress("http://localhost:8085/athena/services/yaocjhService?wsdl");
分享到:
相关推荐
import org.apache.cxf.interceptor.Fault; import org.apache.cxf.interceptor.LoggingMessage; import org.apache.cxf.io.CachedOutputStream; import org.apache.cxf.message.Message; import org.apache.cxf....
### GPU复杂模型重力正演的关键技术点 #### 一、重力正演的基本原理及其GPU实现 **重力正演**是指通过已知的地质结构模型预测地表或近地表处的重力异常值的过程。在地质勘探中,这种方法能够帮助科学家们了解地下...
import org.apache.cxf.interceptor.Fault; import org.apache.cxf.phase.Phase; import org.apache.cxf.interceptor.StaxOutInterceptor; import org.apache.cxf.interceptor.StaxInInterceptor; import org.apache...
| 176 - org.apache.cxf.cxf-api - 2.7.0.redhat-610379 | 应用程序 { 已经抛出异常,现在展开 org.apache.cxf.interceptor.Fault:配置问题:无法为 XML 架构命名空间 [ ] 找到 Spring NamespaceHandler 违规资源...
首先,我们需要创建一个实现了`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.PhaseInterceptor`接口的类。这个类通常会包含处理权限检查的业务逻辑。例如,你可以定义一个名为`...
4. **处理异常**:当拦截器检测到无权限访问时,应该抛出合适的异常,如`org.apache.cxf.interceptor.Fault`。客户端可以捕获这些异常,提供相应的错误信息反馈给用户。 5. **测试与调试**:添加完拦截器后,进行...
如果权限检查失败,拦截器应该抛出一个适当的异常,例如`org.apache.cxf.interceptor.Fault`,并附带错误信息。这样,CXF会捕获这个异常,并根据配置的策略返回相应的错误响应给客户端。 5. **测试与调试**: ...
通过实现`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.Phase`接口,可以创建自定义拦截器,并在服务上下文中注册。 **四、CXF WebService 中传递复杂类型对象** CXF允许在Web服务中传递复杂类型的...
你可以通过实现`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.interceptor.MessageObserver`接口来自定义拦截器,并在CXF服务配置中进行添加。 2. CXF WebService中传递复杂类型对象: CXF允许在Web服务中...
创建一个实现了`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.Phase`接口的类,如`SoapHeaderInterceptor`,并在`handleMessage`方法中处理头部信息: ```java public class SoapHeaderInterceptor...
在CXF服务端,你可以通过实现`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.PhaseInterceptorChain`接口的类来创建自定义拦截器,并将它们添加到服务的拦截器链中。 4. **“inter_client”**: 这...
在CXF中,我们可以通过实现`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.Phase`接口,然后将这些拦截器添加到服务端的拦截器链中。 接着,客户端拦截器(inter_client)同样重要。它们允许我们在...
通过实现`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.Phase`接口,你可以创建自己的拦截器,并在适当阶段注入到CXF管道中。 ### 四、CXF WebService 中传递复杂类型对象 在CXF中,可以方便地处理...
在CXF中,自定义拦截器可以通过实现`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.Phase`接口来创建。 6. **安全性考虑**:通过客户端添加header并由服务端验证的方式,可以实现基于header的安全机制...
2. **自定义拦截器实现**:你可以通过实现`org.apache.cxf.interceptor.Fault`和`org.apache.cxf.phase.Phase`接口来自定义拦截器。`Phase`接口定义了拦截器执行的阶段,如PRE_INVOKE、POST_INVOCATION等。每个拦截...
标题:“CXF拦截器(Interceptor)的使用” 描述:“讲解了cxf实现拦截器的原因、核心API及使用方法” 在深入探讨CXF拦截器的使用之前,我们首先需要理解其在CXF框架中的核心作用与价值。Apache CXF是一个开源框架,...
4. **CXF配置**:深入解析CXF的XML配置文件,包括服务发布、拦截器(Interceptor)和Fault Handler的设置。 5. **安全性**:探讨CXF支持的安全机制,如WS-Security、OAuth、SSL/TLS等,以及如何实现认证和授权。 6...