RE: CXF Client: Software caused connection abort: recv failed

2009-09-08 Thread xinxinwang
caused connection abort: recv failed I deployed my service on JBoss 4.2.3/JDK 1.6.0_10 with port 443 over SSL with the following connector: Connector port=443 protocol=HTTP/1.1 SSLEnabled=true maxThreads=150 scheme=https secure=true clientAuth=true address=${jboss.bind.address

RE: CXF Client: Software caused connection abort: recv failed

2009-09-08 Thread Eamonn Dwyer
...@bah.com To: users@cxf.apache.org Subject: Re: CXF Client: Software caused connection abort: recv failed I tried to use cxf.xml to configure the HttpConduit. I put the cxf.xml in a folder that is in the classpath. However, the config file was not picked up at run-time. xinxinwang wrote

Re: CXF Client: Software caused connection abort: recv failed

2009-09-08 Thread xinxinwang
I tried to use cxf.xml to configure the HttpConduit. I put the cxf.xml in a folder that is in the classpath. However, the config file was not picked up at run-time. xinxinwang wrote: I deployed my service on JBoss 4.2.3/JDK 1.6.0_10 with port 443 over SSL with the following connector:

Re: CXF Client: Software caused connection abort: recv failed

2009-09-08 Thread xinxinwang
What SOAP framework you are using on the client? AXIS2? I found no class SOAPService and Greeter from CXF framework. Xinxin xinxinwang wrote: I deployed my service on JBoss 4.2.3/JDK 1.6.0_10 with port 443 over SSL with the following connector: Connector port=443 protocol=HTTP/1.1

RE: CXF Client: Software caused connection abort: recv failed

2009-09-08 Thread xinxinwang
greetMe ... ); System.out.println(greetMe.result= + port.greetMe(Hello There)); System.exit(0); } Date: Tue, 8 Sep 2009 07:04:59 -0700 From: wang_xin...@bah.com To: users@cxf.apache.org Subject: Re: CXF Client: Software caused connection abort: recv failed I tried

Re: CXF Client: Software caused connection abort: recv failed

2009-09-08 Thread xinxinwang
I see. They are in the org.apache.hello_world_soap_http package. I cheched the CXF samples folder and notices that it is imported by some classes. However, I cannot find the jar file. Where can I dowload this package? Xinxin xinxinwang wrote: What SOAP framework you are using on the

Re: CXF Client: Software caused connection abort: recv failed

2009-09-04 Thread xinxinwang
Thanks for the info. I turn the debug on and got more info: 09:52:05,298 INFO [STDOUT] http-127.0.0.1-443-1, handling exception: javax.net. ssl.SSLHandshakeException: null cert chain Any idea? Xinxin dkulp wrote: All I can suggest is to check the server logs for any information there

Re: CXF Client: Software caused connection abort: recv failed

2009-09-04 Thread xinxinwang
I did more debugging and found some more info. If I use SOAPUI to send the request, it works. So I compared the trace of using SOAPUI with the trace of using CXF client and noticed that the CXF client send an empty client certificate to the server: SOAPUI trace: 2009-09-04 10:20:30,039 INFO

Re: CXF Client: Software caused connection abort: recv failed

2009-09-03 Thread Daniel Kulp
All I can suggest is to check the server logs for any information there as well as try setting the system property: -Djavax.net.debug=all and kind of trace through what the ssl handshake is doing. Might reveal a strange key being used or something. Dan On Wed September 2 2009 10:47:53 am

CXF Client: Software caused connection abort: recv failed

2009-09-02 Thread xinxinwang
I deployed my service on JBoss 4.2.3/JDK 1.6.0_10 with port 443 over SSL with the following connector: Connector port=443 protocol=HTTP/1.1 SSLEnabled=true maxThreads=150 scheme=https secure=true clientAuth=true address=${jboss.bind.address}