Return-Path: X-Original-To: apmail-cxf-users-archive@www.apache.org Delivered-To: apmail-cxf-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 73D091008B for ; Fri, 2 Aug 2013 13:15:12 +0000 (UTC) Received: (qmail 58360 invoked by uid 500); 2 Aug 2013 13:15:10 -0000 Delivered-To: apmail-cxf-users-archive@cxf.apache.org Received: (qmail 58303 invoked by uid 500); 2 Aug 2013 13:15:10 -0000 Mailing-List: contact users-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@cxf.apache.org Delivered-To: mailing list users@cxf.apache.org Received: (qmail 58295 invoked by uid 99); 2 Aug 2013 13:15:10 -0000 Received: from minotaur.apache.org (HELO minotaur.apache.org) (140.211.11.9) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Aug 2013 13:15:10 +0000 Received: from localhost (HELO mail-wi0-f177.google.com) (127.0.0.1) (smtp-auth username coheigea, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Aug 2013 13:15:10 +0000 Received: by mail-wi0-f177.google.com with SMTP id hq12so533576wib.16 for ; Fri, 02 Aug 2013 06:15:07 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=YhI1xVbjkPqSIeqizrshUAsXy17uQZeC2AQPjmyUQmY=; b=YSCAy4Sbp18DdCl81nLmUWQumwh9VWrBLcA/ukjm09AB2g9oA3Rf2iNWn+9GFDI9kY rIuR3okDvIY84M2+60RLABr7pEXXzV8rdYKWbip1T6kpbhAgUEWquCkUw78iJP2FQ6tk 2uSACfJV89s1NSxJcW4kKIzbL1hE1ZT6cwdoKG2h8HzGe3YIHjDH43xvgTPjcEn52+IQ /XiH7JRjORlwIJClW+JYKTrimw3wh4sCWBoYUF0Frd/CUpguEaJ7lo6MRj1BNX6/4U5R gUqz3Boxq6O26x3a04DkNK1KcC2d1yR57beBpsc5o9Z5RFa6I1hNPf6jRpC3yLJjBe1f gwhA== MIME-Version: 1.0 X-Received: by 10.181.13.209 with SMTP id fa17mr1865210wid.12.1375449307758; Fri, 02 Aug 2013 06:15:07 -0700 (PDT) Reply-To: coheigea@apache.org Received: by 10.194.121.2 with HTTP; Fri, 2 Aug 2013 06:15:07 -0700 (PDT) In-Reply-To: References: Date: Fri, 2 Aug 2013 14:15:07 +0100 Message-ID: Subject: Re: org.apache.cxf.ws.policy.PolicyException: These policy alternatives can not be satisfied: From: Colm O hEigeartaigh To: "users@cxf.apache.org" Content-Type: multipart/alternative; boundary=f46d0438eb676546ba04e2f6bf08 --f46d0438eb676546ba04e2f6bf08 Content-Type: text/plain; charset=ISO-8859-1 Ok your configuration is the issue. You are configuring the WSS4JInInterceptor, which is not policy-aware. You need to configure the PolicyBasedWSS4JInInterceptor instead. This is done automatically for you if the WSDL has the correct security policy, but the configuration is done in a slightly different way. For example, see the following configuration: http://svn.apache.org/viewvc/cxf/trunk/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/x509/client.xml?view=markup Colm. On Fri, Aug 2, 2013 at 2:11 PM, wrote: > Map inProps = new HashMap(); > inProps.put(WSHandlerConstants.SIG_PROP_FILE, > "server_sign.properties"); > inProps.put(WSHandlerConstants.ACTION, WSHandlerConstants.TIMESTAMP + > " " + WSHandlerConstants.SIGNATURE); > bindingProvider.getResponseContext().put("password", "xxxxx"); > inProps.put(WSHandlerConstants.USER, > "cs-bedrijven.procesinfrastructuur.nl"); > > WSS4JInInterceptor wssIn = new WSS4JInInterceptor(inProps); > cxfEndpoint.getInInterceptors().add(wssIn); > > --- server_sign.properties --- > > org.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin > org.apache.ws.security.crypto.merlin.keystore.type=jks > org.apache.ws.security.crypto.merlin.keystore.password=xxxxx > #org.apache.ws.security.crypto.merlin.keystore.alias= > cs-bedrijven.procesinfrastructuur.nl > org.apache.ws.security.crypto.merlin.keystore.file=globalkeystore.jks > > This is how I configure WSS4JInInterceptor. I have no extra config files > and I prefer to set all config in the code. When the client works I want > to try to get rid of the server_sign.properties, I want to set that > dynamic. > > Ralph > > > > > From: > Colm O hEigeartaigh > To: > "users@cxf.apache.org" > Date: > 02-08-2013 15:04 > Subject: > Re: org.apache.cxf.ws.policy.PolicyException: These policy alternatives > can not be satisfied: > > > > As a sanity check, can I see your CXF client configuration? > PolicyVerificationInInterceptor does run after > PolicyBasedWSS4JInInterceptor, so maybe you are configuring the > WSS4JInInterceptor explicilty in your configuration? > > Colm. > > > On Fri, Aug 2, 2013 at 1:26 PM, > wrote: > > > Hi Colm, > > > > He doesn't reach the point you asked for. In > > 'org.apache.cxf.ws.policy.AssertionInfoMap.java' checkEffectivePolicy he > > doesn't find any validated policy, the ArrayList validated is empty, the > > ArrayList errors contains 50. He throws at line 179 an exception (cxf > > 2.7.6). > > This method is called from > > 'org.apache.cxf.ws.policy.PolicyVerificationInInterceptor' method > handle. > > Line 101 is the line where call is done. > > The variable aim contains: > > {{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }SignedElements=[{ > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }SignedElements:false], { > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }RecipientToken=[{ > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }RecipientToken:false], {http://www.w3.org/2007/05/addressing/metadata > > }Anonymous=[{http://www.w3.org/2007/05/addressing/metadata > > }Anonymous:false, {http://www.w3.org/2007/05/addressing/metadata > > }Anonymous:false], { > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}Layout=[{ > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}Layout:false], > > AnonymousResponses=[AnonymousResponses:false, AnonymousResponses:false], > { > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }AsymmetricBinding=[{ > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }AsymmetricBinding:false], { > http://www.w3.org/2007/02/addressing/metadata > > }Addressing=[{http://www.w3.org/2007/02/addressing/metadata > > }Addressing:true, {http://www.w3.org/2007/02/addressing/metadata > > }Addressing:true, {http://www.w3.org/2007/02/addressing/metadata > > }Addressing:true, {http://www.w3.org/2007/02/addressing/metadata > > }Addressing:true], { > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }InitiatorToken=[{ > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }InitiatorToken:false], { > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}X509Token=[{ > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > }X509Token:false, > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }X509Token:false], { > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}SignedParts=[{ > > http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }SignedParts:false], { > > http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization > > }OptimizedMimeSerialization=[{ > > http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization > > }OptimizedMimeSerialization:false]} > > > > If you need to know something else, let me know! > > > > Ralph > > > > > > > > From: > > Colm O hEigeartaigh > > To: > > "users@cxf.apache.org" > > Date: > > 02-08-2013 12:57 > > Subject: > > Re: org.apache.cxf.ws.policy.PolicyException: These policy alternatives > > can not be satisfied: > > > > > > > > Do you have access to a debugger? If so could you put a breakpoint in > > PolicyBasedWSS4JInInterceptor in the doResults method and trace the > flow? > > The problem is that some policy is getting unasserted, but I can't > figure > > out which one from the logging. > > > > Colm. > > > > > > On Fri, Aug 2, 2013 at 11:53 AM, > > wrote: > > > > > Hi, > > > > > > This comes from the WSDL as it is given to me. When generated with all > > > three policies enabled, the first is used I believe. I just tried to > > > generate with only one enabled. I tried three times (one time for > > > Basic128Rsa15, one time for Basic256Ras15 and one time for > > > TripleDesRsa15), all the same result as before. > > > At almost the bottum of the log it says ' LogUtils.doLog(443) | > > > WS-Addressing - failed to retrieve Message Addressing Properties from > > > context'. > > > Is it possible that I need to add something to avoid this? And if yes > > how > > > do I do that? > > > > > > Ralph > > > > > > > > > > > > > > > From: > > > Colm O hEigeartaigh > > > To: > > > "users@cxf.apache.org" > > > Date: > > > 02-08-2013 12:34 > > > Subject: > > > Re: org.apache.cxf.ws.policy.PolicyException: These policy > alternatives > > > can not be satisfied: > > > > > > > > > > > > Hi, > > > > > > I'm not sure if this is the cause of the problem, but the following > > policy > > > is not valid: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The specification only allows you to specify one of the policies > above. > > > > > > Colm. > > > > > > > > > On Thu, Aug 1, 2013 at 3:44 PM, > > > wrote: > > > > > > > Hi Colm, > > > > > > > > The previous message didn't contain a attachement. But in the mean > > time > > > I > > > > managed to get a better log. I will attach it as .txt > > > > > > > > > > > > > > > > From: Colm O hEigeartaigh To: > > > "users@cxf.apache.org" > > > > Date: 01-08-2013 10:48 Subject: Re: > > > > org.apache.cxf.ws.policy.PolicyException: These policy alternatives > > can > > > not > > > > be satisfied: > > > > ------------------------------ > > > > > > > > > > > > > > > > Could you turn logging to "FINE" + attach the log? That should tell > us > > > the > > > > exact policy validation error(s). > > > > > > > > Colm. > > > > > > > > > > > > On Thu, Aug 1, 2013 at 9:17 AM, > > > > >wrote: > > > > > > > > > Hi, > > > > > > > > > > Because the formatting was crappy an attachement. > > > > > > > > > > > > > > > > > > > > From: Colm O hEigeartaigh To: " > > > > users@cxf.apache.org" > > > > > Date: 01-08-2013 10:09 Subject: Re: > > > > > org.apache.cxf.ws.policy.PolicyException: These policy > alternatives > > > can > > > > not > > > > > be satisfied: > > > > > ------------------------------ > > > > > > > > > > > > > > > > > > > > Hi, > > > > > > > > > > It looks like the service is processing the CXF request correctly, > > but > > > is > > > > > not returning a response that complies with the security policy, > and > > > the > > > > > client is throwing an exception. It's impossible to find out > without > > > > seeing > > > > > the security policy though. It should be in the WSDL file > referenced > > > in > > > > the > > > > > log, if you could attach it: > > > > > > > > > > file:WSDL/Aanleveren/Aanleverservice_Digipoort_WUS 2.0 > > > > > Bedrijven_v1.2_preprod.wsdl" > > > > > > > > > > Colm. > > > > > > > > > > > > > > > > > > > > On Thu, Aug 1, 2013 at 8:53 AM, > > > > > > >wrote: > > > > > > > > > > > Dear Colm, > > > > > > > > > > > > Sorry i didn't see your previous response. Because of my great > > > e-mail > > > > > > client (Notus ;) ) I wasn't properly connected to the > mailinglist, > > > > > > apologies for the inconvenience. > > > > > > I don't know how to get the security policy of the service. > > > > > > I added the message I send to the server. (I've removed the > > > > SecurityToken > > > > > > for security reasons). > > > > > > The message I received is the text I copied from the log. I also > > > added > > > > > the > > > > > > logging I get at the moment. > > > > > > > > > > > > Ralph > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: Colm O hEigeartaigh To: " > > > > > users@cxf.apache.org" > > > > > > Date: 01-08-2013 09:34 Subject: Re: > > > > > > org.apache.cxf.ws.policy.PolicyException: These policy > > alternatives > > > can > > > > > not > > > > > > be satisfied: > > > > > > ------------------------------ > > > > > > > > > > > > > > > > > > > > > > > > Did you not see my previous response? We need to see the > security > > > > policy > > > > > of > > > > > > the service, the request message + the response message to be > able > > > to > > > > > help > > > > > > you. > > > > > > > > > > > > Colm. > > > > > > > > > > > > > > > > > > On Thu, Aug 1, 2013 at 7:06 AM, > > > > > > > > >wrote: > > > > > > > > > > > > > Dear CXF Support, > > > > > > > > > > > > > > First, I am a newbie with CXF. I am writing a CXF client to > > > interact > > > > > with > > > > > > > the government. I am able to send a message. But when I > receive > > > the > > > > > > > response my client crashes. > > > > > > > Below is the stacktrace. I'm using CXF 2.7.6. I am using Java > > > 1.6.45. > > > > > If > > > > > > > you need more info, please let me know as I don't exactly know > > > what > > > > > info > > > > > > > you need to help me. > > > > > > > Please help me, I'm stuck. > > > > > > > > > > > > > > Ralph Keegstra > > > > > > > > > > > > > > org.apache.cxf.ws.policy.PolicyException: These policy > > > alternatives > > > > can > > > > > > > not be satisfied: > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > > }AsymmetricBinding > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > }X509Token > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }InitiatorToken > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }RecipientToken > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }Layout > > > > > > > {http://www.w3.org/2007/05/addressing/metadata}Anonymous > > > > > > > { > > > > > > > > > http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization > > > > > > > }OptimizedMimeSerialization > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > }SignedParts > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }SignedElements > > > > > > > AnonymousResponses > > > > > > > at > > > > > > org.apache.cxf.ws.policy.AssertionInfoMap.checkEffectivePolicy( > > > > > > > AssertionInfoMap.java:179) > > > > > > > at > > > > > > > > org.apache.cxf.ws.policy.PolicyVerificationInInterceptor.handle( > > > > > > > PolicyVerificationInInterceptor.java:101) > > > > > > > at > > > > > > > > > org.apache.cxf.ws.policy.AbstractPolicyInterceptor.handleMessage( > > > > > > > AbstractPolicyInterceptor.java:44) > > > > > > > at > > org.apache.cxf.phase.PhaseInterceptorChain.doIntercept( > > > > > > > PhaseInterceptorChain.java:271) > > > > > > > at org.apache.cxf.endpoint.ClientImpl.onMessage( > > > > > > > ClientImpl.java:800) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal( > > > > > > > HTTPConduit.java:1592) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse( > > > > > > > HTTPConduit.java:1490) > > > > > > > at > > > > > > > > > > org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close( > > > > > > > HTTPConduit.java:1309) > > > > > > > at > > org.apache.cxf.io.CacheAndWriteOutputStream.postClose( > > > > > > > CacheAndWriteOutputStream.java:50) > > > > > > > at org.apache.cxf.io.CachedOutputStream.close( > > > > > > > CachedOutputStream.java:223) > > > > > > > at org.apache.cxf.transport.AbstractConduit.close( > > > > > > > AbstractConduit.java:56) > > > > > > > at org.apache.cxf.transport.http.HTTPConduit.close( > > > > > > > HTTPConduit.java:622) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage( > > > > > > > MessageSenderInterceptor.java:62) > > > > > > > at > > org.apache.cxf.phase.PhaseInterceptorChain.doIntercept( > > > > > > > PhaseInterceptorChain.java:271) > > > > > > > at > > > > > > org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:530 > > > > > > > ) > > > > > > > at > > > > > org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:463) > > > > > > > at > > > > > org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:366) > > > > > > > at > > > > > org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:319) > > > > > > > at org.apache.cxf.frontend.ClientProxy.invokeSync( > > > > > > > ClientProxy.java:96) > > > > > > > at org.apache.cxf.jaxws.JaxWsClientProxy.invoke( > > > > > > > JaxWsClientProxy.java:133) > > > > > > > at com.sun.proxy.$Proxy34.aanleveren(Unknown Source) > > > > > > > at > > > > nl.pfm.wus.aanroep.WUSAanlever.leverAan(WUSAanlever.java:34) > > > > > > > at > nl.pfm.wus.aanroep.WUSAanroep.main(WUSAanroep.java:9) > > > > > > > Exception in thread "main" > javax.xml.ws.soap.SOAPFaultException: > > > > These > > > > > > > policy alternatives can not be satisfied: > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > > }AsymmetricBinding > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > }X509Token > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }InitiatorToken > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }RecipientToken > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }Layout > > > > > > > {http://www.w3.org/2007/05/addressing/metadata}Anonymous > > > > > > > { > > > > > > > > > http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization > > > > > > > }OptimizedMimeSerialization > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > }SignedParts > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }SignedElements > > > > > > > AnonymousResponses > > > > > > > at org.apache.cxf.jaxws.JaxWsClientProxy.invoke( > > > > > > > JaxWsClientProxy.java:155) > > > > > > > at com.sun.proxy.$Proxy34.aanleveren(Unknown Source) > > > > > > > at > > > > nl.pfm.wus.aanroep.WUSAanlever.leverAan(WUSAanlever.java:34) > > > > > > > at > nl.pfm.wus.aanroep.WUSAanroep.main(WUSAanroep.java:9) > > > > > > > Caused by: org.apache.cxf.ws.policy.PolicyException: These > > policy > > > > > > > alternatives can not be satisfied: > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > > }AsymmetricBinding > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > }X509Token > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }InitiatorToken > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }RecipientToken > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > }Layout > > > > > > > {http://www.w3.org/2007/05/addressing/metadata}Anonymous > > > > > > > { > > > > > > > > > http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization > > > > > > > }OptimizedMimeSerialization > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > }SignedParts > > > > > > > {http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702 > > > > > > }SignedElements > > > > > > > AnonymousResponses > > > > > > > at > > > > > > org.apache.cxf.ws.policy.AssertionInfoMap.checkEffectivePolicy( > > > > > > > AssertionInfoMap.java:179) > > > > > > > at > > > > > > > > org.apache.cxf.ws.policy.PolicyVerificationInInterceptor.handle( > > > > > > > PolicyVerificationInInterceptor.java:101) > > > > > > > at > > > > > > > > > org.apache.cxf.ws.policy.AbstractPolicyInterceptor.handleMessage( > > > > > > > AbstractPolicyInterceptor.java:44) > > > > > > > at > > org.apache.cxf.phase.PhaseInterceptorChain.doIntercept( > > > > > > > PhaseInterceptorChain.java:271) > > > > > > > at org.apache.cxf.endpoint.ClientImpl.onMessage( > > > > > > > ClientImpl.java:800) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal( > > > > > > > HTTPConduit.java:1592) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse( > > > > > > > HTTPConduit.java:1490) > > > > > > > at > > > > > > > > > > org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close( > > > > > > > HTTPConduit.java:1309) > > > > > > > at > > org.apache.cxf.io.CacheAndWriteOutputStream.postClose( > > > > > > > CacheAndWriteOutputStream.java:50) > > > > > > > at org.apache.cxf.io.CachedOutputStream.close( > > > > > > > CachedOutputStream.java:223) > > > > > > > at org.apache.cxf.transport.AbstractConduit.close( > > > > > > > AbstractConduit.java:56) > > > > > > > at org.apache.cxf.transport.http.HTTPConduit.close( > > > > > > > HTTPConduit.java:622) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage( > > > > > > > MessageSenderInterceptor.java:62) > > > > > > > at > > org.apache.cxf.phase.PhaseInterceptorChain.doIntercept( > > > > > > > PhaseInterceptorChain.java:271) > > > > > > > at > > > > > > org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:530 > > > > > > > ) > > > > > > > at > > > > > org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:463) > > > > > > > at > > > > > org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:366) > > > > > > > at > > > > > org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:319) > > > > > > > at org.apache.cxf.frontend.ClientProxy.invokeSync( > > > > > > > ClientProxy.java:96) > > > > > > > at org.apache.cxf.jaxws.JaxWsClientProxy.invoke( > > > > > > > JaxWsClientProxy.java:133) > > > > > > > ... 3 more > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > Colm O hEigeartaigh > > > > > > > > > > > > Talend Community Coder > > > > > > http://coders.talend.com > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > Colm O hEigeartaigh > > > > > > > > > > Talend Community Coder > > > > > http://coders.talend.com > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > Colm O hEigeartaigh > > > > > > > > Talend Community Coder > > > > http://coders.talend.com > > > > > > > > > > > > > > > > > > > > > -- > > > Colm O hEigeartaigh > > > > > > Talend Community Coder > > > http://coders.talend.com > > > > > > > > > > > > > > > -- > > Colm O hEigeartaigh > > > > Talend Community Coder > > http://coders.talend.com > > > > > > > > > -- > Colm O hEigeartaigh > > Talend Community Coder > http://coders.talend.com > > > -- Colm O hEigeartaigh Talend Community Coder http://coders.talend.com --f46d0438eb676546ba04e2f6bf08--