You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@camel.apache.org by segev <so...@gmail.com> on 2015/08/27 13:11:13 UTC

CXF SOAP Message Sent from a Camel Client Twice When No HTTP Response Received

We came across the following issue when using the Camel CXF component to
invoke a SOAP request with Payload mode over HTTPS on a third party service.

The third party server provides two endpoints primary and secondary.

As part of certifying our system with this service (fail over test), we were
required to invoke a test request on the primary (which failed with No HTTP
Response error). 
The Camel client sent one message (as observed on our Camel Trace log) but
the server received two requests.
We used soapUI client to invoke the same test server just to confirm that
the server register one request only.

Note that the 'Redelivery Policies' were configured with
'maximumRedeliveries' of 0.

We ended up replacing the "cxf://.." endpoint with a 'processor' with Apache
HTTPClient and this solve the duplicate message being sent.

We couldn't find any obvious setting on the cxf configuration or the HTTP
Conduit to prevent this from happening. 
Any suggestions on what may cause a 'NoHttpResponse' error to trigger
sending a second message will be appreciated.



--
View this message in context: http://camel.465427.n5.nabble.com/CXF-SOAP-Message-Sent-from-a-Camel-Client-Twice-When-No-HTTP-Response-Received-tp5771010.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Re: CXF SOAP Message Sent from a Camel Client Twice When No HTTP Response Received

Posted by segev <so...@gmail.com>.
It took us a few day to respond as the third party server was down.
Anyway after adding logging to the project we still couldn't find any
obvious trace for sending the message twice. 
As mentioned soapUI client and the same camel project with HttpClient
library don't exhibit the same issue which is - the server indicates that
the following was sent twice

org.apache.cxf.transport.http.Headers: 284 - SOAPAction: "Increment" 



The full log associated with the above as follows:
--------------------------------------------------------------------------------
2015-09-01 11:58:38,582 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d             
c.b.g.sampleService.routes.sampleRoutes: 189 - Body: <?xml version='1.0'
encoding='UTF-8'?><ns2:Increment
xmlns:ns2="https://api.uri.com/1.0/types_trans"><id><token>********************************</token><user>*****</user><userPasswd>****</userPasswd></id><reference>*****************</reference><sampleNumber>***********************</sampleNumber><amount>10.0</amount></ns2:Increment>
2015-09-01 11:58:38,587 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.camel.spring.SpringCamelContext: 387 - Using ComponentResolver:
org.apache.camel.impl.DefaultComponentResolver@3c161441 to resolve component
with name: cxf
2015-09-01 11:58:38,587 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d    
org.apache.camel.impl.DefaultComponentResolver:  49 - Found component: cxf
in registry: null
2015-09-01 11:58:38,590 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d    
org.apache.camel.impl.DefaultComponentResolver:  82 - Found component: cxf
via type: org.apache.camel.component.cxf.CxfComponent via:
META-INF/services/org/apache/camel/component/cxf
2015-09-01 11:58:38,590 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 450 - Creating instance of
bean 'org.apache.camel.component.cxf.CxfComponent'
2015-09-01 11:58:38,592 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 248 - Returning cached
instance of singleton bean 'camelContext'
2015-09-01 11:58:38,592 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 757 - Autowiring by type
from bean name 'org.apache.camel.component.cxf.CxfComponent' via constructor
to bean named 'camelContext'
2015-09-01 11:58:38,603 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 478 - Finished creating
instance of bean 'org.apache.camel.component.cxf.CxfComponent'
2015-09-01 11:58:38,604 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.camel.management.DefaultManagementAgent: 361 - Registered MBean
with ObjectName: org.apache.camel:context=camel-1,type=components,name="cxf"
2015-09-01 11:58:38,605 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d            
org.apache.camel.impl.DefaultComponent: 111 - Creating endpoint
uri=[cxf://bean:samplePrimaryService?dataFormat=PAYLOAD],
path=[bean:samplePrimaryService]
2015-09-01 11:58:38,606 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 450 - Creating instance of
bean 'samplePrimaryService'
2015-09-01 11:58:38,649 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 248 - Returning cached
instance of singleton bean 'loggingOutInterceptor'
2015-09-01 11:58:38,787 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.PolicyAnnotationListener.
2015-09-01 11:58:38,794 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.service.factory.FactoryBeanListenerManager.
2015-09-01 11:58:38,800 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.PolicyEngineImpl.
2015-09-01 11:58:38,802 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.PolicyDataEngineImpl.
2015-09-01 11:58:38,802 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.bus.managers.CXFBusLifeCycleManager.
2015-09-01 11:58:38,805 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.bus.managers.ServerRegistryImpl.
2015-09-01 11:58:38,805 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 248 - Returning cached
instance of singleton bean 'cxf'
2015-09-01 11:58:38,806 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 248 - Returning cached
instance of singleton bean 'cxf'
2015-09-01 11:58:38,808 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.camel.util.IntrospectionSupport: 528 - Configured property:
dataFormat on bean: Endpoint[%7B%7Bsample.service.primary.uri%7D%7D] with
value: MESSAGE
2015-09-01 11:58:38,808 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.camel.util.IntrospectionSupport: 518 - Configured property:
beanId on bean: Endpoint[%7B%7Bsample.service.primary.uri%7D%7D] with value:
samplePrimaryService
2015-09-01 11:58:38,808 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 478 - Finished creating
instance of bean 'samplePrimaryService'
2015-09-01 11:58:38,809 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.camel.util.IntrospectionSupport: 528 - Configured property:
dataFormat on bean: Endpoint[%7B%7Bsample.service.primary.uri%7D%7D] with
value: PAYLOAD
2015-09-01 11:58:38,810 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.camel.spring.SpringCamelContext: 562 -
cxf://bean:samplePrimaryService?dataFormat=PAYLOAD converted to endpoint:
Endpoint[cxf://bean:samplePrimaryService?dataFormat=PAYLOAD] by component:
org.apache.camel.component.cxf.CxfComponent@7be759f
2015-09-01 11:58:38,870 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  81 - Searching for key
'sample.service.primary.uri' in [commandLineArgs]
2015-09-01 11:58:38,870 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  81 - Searching for key
'sample.service.primary.uri' in [servletConfigInitParams]
2015-09-01 11:58:38,871 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  81 - Searching for key
'sample.service.primary.uri' in [servletContextInitParams]
2015-09-01 11:58:38,871 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  81 - Searching for key
'sample.service.primary.uri' in [systemProperties]
2015-09-01 11:58:38,871 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  81 - Searching for key
'sample.service.primary.uri' in [systemEnvironment]
2015-09-01 11:58:38,871 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  81 - Searching for key
'sample.service.primary.uri' in [random]
2015-09-01 11:58:38,872 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  81 - Searching for key
'sample.service.primary.uri' in [applicationConfig:
[classpath:/application.properties]]
2015-09-01 11:58:38,872 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d      
o.s.core.env.PropertySourcesPropertyResolver:  90 - Found key
'sample.service.primary.uri' in [applicationConfig:
[classpath:/application.properties]] with type [String] and value
'https://test.url.com:88888/1.0/trans/'
2015-09-01 11:58:38,873 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.camel.spring.SpringCamelContext:1957 - Resolved text:
{{sample.service.primary.uri}} -> https://test.url.com:88888/1.0/trans/
2015-09-01 11:58:38,907 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.camel.component.cxf.CxfEndpoint: 538 - ClientFactoryBean:
org.apache.camel.component.cxf.CxfEndpoint$3@3db0d04a added properties: {}
2015-09-01 11:58:38,980 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.wsdl11.WSDLManagerImpl.
2015-09-01 11:58:38,982 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d    
org.apache.cxf.resource.DefaultResourceManager: 103 - resolving resource
<org.apache.cxf.wsdl11.WSDLManagerImpl/bus> type <interface
org.apache.cxf.Bus>
2015-09-01 11:58:38,983 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d    
org.apache.cxf.resource.DefaultResourceManager: 103 - resolving resource
<null> type <interface org.apache.cxf.Bus>
2015-09-01 11:58:38,984 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 248 - Returning cached
instance of singleton bean 'cxf'
2015-09-01 11:58:39,059 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.transport.http.HTTPWSDLExtensionLoader.
2015-09-01 11:58:39,123 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.binding.xml.wsdl11.XMLWSDLExtensionLoader.
2015-09-01 11:58:39,136 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.addressing.impl.AddressingWSDLExtensionLoader.
2015-09-01 11:58:39,165 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.catalog.OASISCatalogManager.
2015-09-01 11:58:39,344  INFO d87c73ab-1c15-480b-81de-73f3d314148d    
o.a.c.w.s.factory.ReflectionServiceFactoryBean: 388 - Creating Service
{https://api.uri.com/1.0/gapi.wsdl}gapiTrans from WSDL:
META-INF/wsdl/gapi_trans.wsdl
2015-09-01 11:58:39,520 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.binding.soap.SoapBindingFactory.
2015-09-01 11:58:39,555 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.binding.soap.SoapTransportFactory.
2015-09-01 11:58:39,570 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d               
org.apache.cxf.jaxb.JAXBDataBinding: 340 - Created JAXBContext
"jar:file:/C:/Users/golembd/.m2/repository/com/sun/xml/bind/jaxb-impl/2.2.11/jaxb-impl-2.2.11.jar!/com/sun/xml/bind/v2/runtime/JAXBContextImpl.class
Build-Id: 2.2.11
Classes known to this context:
  [B
  boolean
  byte
  char
  com.sun.xml.bind.api.CompositeStructure
  double
  float
  int
  java.awt.Image
  java.io.File
  java.lang.Boolean
  java.lang.Byte
  java.lang.Character
  java.lang.Class
  java.lang.Double
  java.lang.Float
  java.lang.Integer
  java.lang.Long
  java.lang.Object
  java.lang.Short
  java.lang.String
  java.lang.Void
  java.math.BigDecimal
  java.math.BigInteger
  java.net.URI
  java.net.URL
  java.util.Calendar
  java.util.Date
  java.util.GregorianCalendar
  java.util.UUID
  javax.activation.DataHandler
  javax.xml.bind.JAXBElement
  javax.xml.datatype.Duration
  javax.xml.datatype.XMLGregorianCalendar
  javax.xml.namespace.QName
  javax.xml.transform.Source
  long
  short
  void
" with classes [].
2015-09-01 11:58:39,633 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.bus.managers.ClientLifeCycleManagerImpl.
2015-09-01 11:58:39,634  INFO d87c73ab-1c15-480b-81de-73f3d314148d      
o.a.c.c.cxf.feature.PayLoadDataFormatFeature: 114 - removing the interceptor
org.apache.cxf.interceptor.ClientFaultConverter@7f0c715e
2015-09-01 11:58:39,639  INFO d87c73ab-1c15-480b-81de-73f3d314148d      
o.a.c.c.cxf.feature.PayLoadDataFormatFeature:  83 - Initialized CXF Client:
org.apache.camel.component.cxf.CxfEndpoint$CamelCxfClientImpl@5d80c382 in
Payload mode with allow streaming: true
2015-09-01 11:58:39,639 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d               
org.apache.camel.impl.ProducerCache: 415 - Adding to producer cache with
key: Endpoint[cxf://bean:samplePrimaryService?dataFormat=PAYLOAD] for
producer: Producer[cxf://bean:samplePrimaryService?dataFormat=PAYLOAD]
2015-09-01 11:58:39,641 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d    
org.apache.camel.processor.DefaultErrorHandler:1277 - Redelivery enabled:
false on error handler:
DefaultErrorHandler[Producer[cxf://bean:samplePrimaryService?dataFormat=PAYLOAD]]
2015-09-01 11:58:39,652 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
org.apache.camel.component.cxf.DefaultCxfBinding: 665 - Propagate to CXF
header: breadcrumbId value: ID-***********-60807-1441072675510-0-1
2015-09-01 11:58:39,653 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
org.apache.camel.component.cxf.DefaultCxfBinding: 665 - Propagate to CXF
header: SERVICE_ENDPOINT value:
cxf:bean:samplePrimaryService?dataFormat=PAYLOAD
2015-09-01 11:58:39,655 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d                
org.apache.cxf.endpoint.ClientImpl: 446 - Invoke, operation info:
[BindingOperationInfo: {https://api.uri.com/1.0/binding_trans}Increment],
params: [org.apache.camel.component.cxf.CxfPayload@1ce95e82]
2015-09-01 11:58:39,658 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d                
org.apache.cxf.endpoint.ClientImpl: 664 - set requestContext to message
be{CamelMulticastComplete=true, CamelFilterNonXmlChars=true,
org.apache.camel.component.cxf.DataFormat=PAYLOAD, CamelCreatedTimestamp=Tue
Sep 01 11:58:30 EST 2015, CamelMulticastIndex=0,
ORIGINAL_REFERENCE=TOPUP_00011441072709246,
CamelCorrelationId=ID-***********-60807-1441072675510-0-2,
org.apache.cxf.message.Message.PROTOCOL_HEADERS={breadcrumbId=[ID-***********-60807-1441072675510-0-1],
SERVICE_ENDPOINT=[cxf:bean:samplePrimaryService?dataFormat=PAYLOAD]},
CamelToEndpoint=cxf://bean:samplePrimaryService?dataFormat=PAYLOAD,
FINAL_REFERENCE=************************,
ORIGINAL_REQUEST=com.test.sampleClient.Increment@50700f6d,
CamelMessageHistory=[DefaultMessageHistory[routeId=null, node=setProperty1],
DefaultMessageHistory[routeId=null, node=setProperty2],
DefaultMessageHistory[routeId=null, node=process2],
DefaultMessageHistory[routeId=sample.Increment, node=setHeader5],
DefaultMessageHistory[routeId=sample.Increment, node=to6],
DefaultMessageHistory[routeId=sample.MainService, node=loadBalance1],
DefaultMessageHistory[routeId=sample.MainService, node=to9],
DefaultMessageHistory[routeId=sample.PrimaryService, node=setBody1],
DefaultMessageHistory[routeId=sample.PrimaryService, node=process3],
DefaultMessageHistory[routeId=sample.PrimaryService, node=setHeader8],
DefaultMessageHistory[routeId=sample.PrimaryService, node=to11],
DefaultMessageHistory[routeId=sample.InvokeService, node=convertBodyTo8],
DefaultMessageHistory[routeId=sample.InvokeService, node=setHeader10],
DefaultMessageHistory[routeId=sample.InvokeService, node=setHeader11],
DefaultMessageHistory[routeId=sample.InvokeService, node=setHeader12],
DefaultMessageHistory[routeId=sample.InvokeService, node=process7],
DefaultMessageHistory[routeId=sample.InvokeService, node=recipientList1]],
mtom-enabled=false, REVERSAL_REQUIRED=true,
CamelRecipientListEndpoint=cxf://bean:samplePrimaryService?dataFormat=PAYLOAD,
CamelCXFDataFormat=PAYLOAD,
org.apache.cxf.jaxws.context.WrappedMessageContext.SCOPES={CamelMulticastComplete=APPLICATION,
CamelFilterNonXmlChars=APPLICATION,
org.apache.camel.component.cxf.DataFormat=APPLICATION,
CamelCreatedTimestamp=APPLICATION, CamelMulticastIndex=APPLICATION,
ORIGINAL_REFERENCE=APPLICATION, CamelCorrelationId=APPLICATION,
CamelToEndpoint=APPLICATION, FINAL_REFERENCE=APPLICATION,
ORIGINAL_REQUEST=APPLICATION, CamelMessageHistory=APPLICATION,
mtom-enabled=APPLICATION, REVERSAL_REQUIRED=APPLICATION,
CamelRecipientListEndpoint=APPLICATION, CamelCXFDataFormat=APPLICATION,
org.apache.cxf.service.model.BindingOperationInfo=APPLICATION},
org.apache.cxf.service.model.BindingOperationInfo=[BindingOperationInfo:
{https://api.uri.com/1.0/binding_trans}Increment]}
2015-09-01 11:58:39,663 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.bus.managers.PhaseManagerImpl.
2015-09-01 11:58:39,665 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d                
org.apache.cxf.endpoint.ClientImpl: 942 - Interceptors contributed by bus:
[org.apache.cxf.ws.policy.PolicyOutInterceptor@60e789fe]
2015-09-01 11:58:39,665 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d                
org.apache.cxf.endpoint.ClientImpl: 946 - Interceptors contributed by
client: []
2015-09-01 11:58:39,665 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d                
org.apache.cxf.endpoint.ClientImpl: 950 - Interceptors contributed by
endpoint: [org.apache.cxf.interceptor.MessageSenderInterceptor@114b466,
org.apache.cxf.interceptor.LoggingOutInterceptor@764f9517]
2015-09-01 11:58:39,666 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d                
org.apache.cxf.endpoint.ClientImpl: 954 - Interceptors contributed by
binding: [org.apache.cxf.interceptor.AttachmentOutInterceptor@62c555af,
org.apache.cxf.interceptor.StaxOutInterceptor@97c86d2,
org.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@4e7749db,
org.apache.cxf.wsdl.interceptors.WrappedOutInterceptor@7991f11b,
org.apache.cxf.wsdl.interceptors.BareOutInterceptor@5c6c61f7,
org.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@4f93ce88,
org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@70dc6b88]
2015-09-01 11:58:39,666 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d                
org.apache.cxf.endpoint.ClientImpl: 960 - Interceptors contributed by
databinding: []
2015-09-01 11:58:39,676 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.ws.policy.PolicyOutInterceptor@60e789fe to phase setup
2015-09-01 11:58:39,676 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.interceptor.MessageSenderInterceptor@114b466 to phase
prepare-send
2015-09-01 11:58:39,677  WARN d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 237 - Skipping interceptor
org.apache.cxf.interceptor.LoggingOutInterceptor: Phase target/write
specified does not exist.
2015-09-01 11:58:39,677 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.interceptor.AttachmentOutInterceptor@62c555af to phase
pre-stream
2015-09-01 11:58:39,677 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.interceptor.StaxOutInterceptor@97c86d2 to phase pre-stream
2015-09-01 11:58:39,678 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@4e7749db
to phase pre-logical
2015-09-01 11:58:39,678 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.wsdl.interceptors.WrappedOutInterceptor@7991f11b to phase
marshal
2015-09-01 11:58:39,678 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.wsdl.interceptors.BareOutInterceptor@5c6c61f7 to phase
marshal
2015-09-01 11:58:39,678 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@4f93ce88
to phase post-logical
2015-09-01 11:58:39,679 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@70dc6b88 to phase
write
2015-09-01 11:58:39,688 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.transport.http.HTTPTransportFactory.
2015-09-01 11:58:39,718 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 450 - Creating instance of
bean '(inner bean)#74309600'
2015-09-01 11:58:39,761 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 478 - Finished creating
instance of bean '(inner bean)#74309600'
2015-09-01 11:58:39,762 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 450 - Creating instance of
bean '(inner bean)#d89a76d'
2015-09-01 11:58:39,763 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 450 - Creating instance of
bean '(inner bean)#484eec0c'
2015-09-01 11:58:39,774 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 450 - Creating instance of
bean '(inner bean)#1ac7c44d'
2015-09-01 11:58:39,780 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 478 - Finished creating
instance of bean '(inner bean)#1ac7c44d'
2015-09-01 11:58:39,781 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 450 - Creating instance of
bean '(inner bean)#14e6103c'
2015-09-01 11:58:39,786 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 478 - Finished creating
instance of bean '(inner bean)#14e6103c'
2015-09-01 11:58:39,787 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 478 - Finished creating
instance of bean '(inner bean)#484eec0c'
2015-09-01 11:58:39,798 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.a.cxf.configuration.jsse.TLSParameterJaxBUtils: 452 - KEY_STORE_TYPE_SET
2015-09-01 11:58:39,798 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.a.cxf.configuration.jsse.TLSParameterJaxBUtils: 452 -
KEY_STORE_PROVIDER_NOT_SET
2015-09-01 11:58:39,811 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d  
o.s.b.factory.support.DefaultListableBeanFactory: 478 - Finished creating
instance of bean '(inner bean)#d89a76d'
2015-09-01 11:58:39,811 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d         
org.apache.cxf.transport.http.HTTPConduit: 915 - Conduit
'{https://api.uri.com/1.0/gapi.wsdl}transPort.http-conduit' has been (re)
configured for TLS keyManagers nulltrustManagers
[sun.security.ssl.X509TrustManagerImpl@652df6b1]secureRandom null
2015-09-01 11:58:39,812 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 172 - Successfully
performed injection.
2015-09-01 11:58:39,813 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 179 - Could not find a
definition for bean with id https://test.url.com:88888/1.0/trans/ - no
injection will be performed.
2015-09-01 11:58:39,813 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d         
org.apache.cxf.transport.http.HTTPConduit: 393 - No Trust Decider configured
for Conduit '{https://api.uri.com/1.0/gapi.wsdl}transPort.http-conduit'
2015-09-01 11:58:39,813 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d         
org.apache.cxf.transport.http.HTTPConduit: 406 - No Auth Supplier configured
for Conduit '{https://api.uri.com/1.0/gapi.wsdl}transPort.http-conduit'
2015-09-01 11:58:39,813 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d         
org.apache.cxf.transport.http.HTTPConduit: 417 - Conduit
'{https://api.uri.com/1.0/gapi.wsdl}transPort.http-conduit' has been
configured for TLS keyManagers nulltrustManagers
[sun.security.ssl.X509TrustManagerImpl@652df6b1]secureRandom nullDisable
Common Name (CN) Check: false
2015-09-01 11:58:39,814 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d         
org.apache.cxf.transport.http.HTTPConduit:  49 - registering incoming
observer:
org.apache.camel.component.cxf.CxfEndpoint$CamelCxfClientImpl@5d80c382
2015-09-01 11:58:39,815 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 731 - Chain
org.apache.cxf.phase.PhaseInterceptorChain@6a48ed56 was created. Current
flow:
  setup [PolicyOutInterceptor]
  pre-logical [SoapHeaderOutFilterInterceptor]
  post-logical [SoapPreProtocolOutInterceptor]
  prepare-send [MessageSenderInterceptor]
  pre-stream [AttachmentOutInterceptor, StaxOutInterceptor]
  write [SoapOutInterceptor]
  marshal [WrappedOutInterceptor, BareOutInterceptor]

2015-09-01 11:58:39,815 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor org.apache.cxf.ws.policy.PolicyOutInterceptor@60e789fe
2015-09-01 11:58:39,833 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.AssertionBuilderRegistryImpl.
2015-09-01 11:58:39,834 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.PolicyBuilderImpl.
2015-09-01 11:58:39,835 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.attachment.ServiceModelPolicyProvider.
2015-09-01 11:58:39,842 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.attachment.wsdl11.Wsdl11AttachmentPolicyProvider.
2015-09-01 11:58:39,848 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistryImpl.
2015-09-01 11:58:39,849 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@4e7749db
2015-09-01 11:58:39,849 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@4f93ce88
2015-09-01 11:58:39,849 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor org.apache.cxf.interceptor.MessageSenderInterceptor@114b466
2015-09-01 11:58:39,929 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The location of the
key store has not been set via a system parameter or through configuration
so the default value of C:\Users\golembd/.keystore will be used.
2015-09-01 11:58:39,929 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The key store
password has not been set via a system property or through configuration,
reading data from the keystore will fail.
2015-09-01 11:58:39,930 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The key password
has not been set via a system property or through configuration, reading
data from the keystore will fail.
2015-09-01 11:58:39,930 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 185 - No default keystore
C:\Users\golembd/.keystore
2015-09-01 11:58:40,088 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The cipher suites
have not been configured, falling back to cipher suite filters.
2015-09-01 11:58:40,091 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - Ciphersuite include
filter: .*_EXPORT_.*
2015-09-01 11:58:40,093 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - Ciphersuite include
filter: .*_EXPORT1024_.*
2015-09-01 11:58:40,094 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - Ciphersuite include
filter: .*_WITH_DES_.*
2015-09-01 11:58:40,095 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - Ciphersuite include
filter: .*_WITH_AES_.*
2015-09-01 11:58:40,096 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - Ciphersuite include
filter: .*_WITH_NULL_.*
2015-09-01 11:58:40,097 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - Ciphersuite exclude
filter: .*_DH_anon_.*
2015-09-01 11:58:40,098 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 cipher suite is included by the
filter.
2015-09-01 11:58:40,101 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 cipher suite is included by the
filter.
2015-09-01 11:58:40,102 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_RSA_WITH_AES_128_CBC_SHA256 cipher suite is included by the filter.
2015-09-01 11:58:40,104 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 cipher suite is included by the
filter.
2015-09-01 11:58:40,106 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 cipher suite is included by the filter.
2015-09-01 11:58:40,107 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 cipher suite is included by the filter.
2015-09-01 11:58:40,108 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 cipher suite is included by the filter.
2015-09-01 11:58:40,109 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,110 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,112 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_RSA_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,113 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,114 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,115 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_DHE_RSA_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,115 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_DHE_DSS_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,116 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_ECDSA_WITH_RC4_128_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,116 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_RSA_WITH_RC4_128_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,117 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_WITH_RC4_128_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,117 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_ECDSA_WITH_RC4_128_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,118 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_RSA_WITH_RC4_128_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,118 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the
filter.
2015-09-01 11:58:40,119 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,119 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,120 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,121 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,122 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,122 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,123 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_WITH_RC4_128_MD5 cipher suite is excluded by the filter.
2015-09-01 11:58:40,124 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_EMPTY_RENEGOTIATION_INFO_SCSV cipher suite is excluded by the filter.
2015-09-01 11:58:40,125 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_DH_anon_WITH_AES_128_CBC_SHA256 cipher suite is excluded by the filter.
2015-09-01 11:58:40,126 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_anon_WITH_AES_128_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,126 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_DH_anon_WITH_AES_128_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,127 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_anon_WITH_RC4_128_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,128 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DH_anon_WITH_RC4_128_MD5 cipher suite is excluded by the filter.
2015-09-01 11:58:40,129 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,130 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DH_anon_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,130 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_RSA_WITH_NULL_SHA256 cipher suite is included by the filter.
2015-09-01 11:58:40,131 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_ECDSA_WITH_NULL_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,132 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDHE_RSA_WITH_NULL_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,133 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_WITH_NULL_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,134 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_ECDSA_WITH_NULL_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,136 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_RSA_WITH_NULL_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,138 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_ECDH_anon_WITH_NULL_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,139 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_WITH_NULL_MD5 cipher suite is included by the filter.
2015-09-01 11:58:40,140 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_WITH_DES_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,141 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DHE_RSA_WITH_DES_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,141 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DHE_DSS_WITH_DES_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,142 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DH_anon_WITH_DES_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,142 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_EXPORT_WITH_RC4_40_MD5 cipher suite is included by the filter.
2015-09-01 11:58:40,143 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DH_anon_EXPORT_WITH_RC4_40_MD5 cipher suite is excluded by the filter.
2015-09-01 11:58:40,143 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_RSA_EXPORT_WITH_DES40_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,143 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA cipher suite is included by the
filter.
2015-09-01 11:58:40,144 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA cipher suite is included by the
filter.
2015-09-01 11:58:40,145 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
SSL_DH_anon_EXPORT_WITH_DES40_CBC_SHA cipher suite is excluded by the
filter.
2015-09-01 11:58:40,145 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_WITH_RC4_128_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,146 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_WITH_RC4_128_MD5 cipher suite is excluded by the filter.
2015-09-01 11:58:40,147 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_WITH_3DES_EDE_CBC_SHA cipher suite is excluded by the filter.
2015-09-01 11:58:40,148 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_WITH_3DES_EDE_CBC_MD5 cipher suite is excluded by the filter.
2015-09-01 11:58:40,149 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_WITH_DES_CBC_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,150 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_WITH_DES_CBC_MD5 cipher suite is included by the filter.
2015-09-01 11:58:40,150 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_EXPORT_WITH_RC4_40_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,151 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_EXPORT_WITH_RC4_40_MD5 cipher suite is included by the filter.
2015-09-01 11:58:40,151 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA cipher suite is included by the filter.
2015-09-01 11:58:40,152 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The
TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 cipher suite is included by the filter.
2015-09-01 11:58:40,152 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The enabled cipher
suites have been filtered down to [TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256,
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256,
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,
TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,
TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
TLS_ECDH_anon_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_NULL_SHA256,
TLS_ECDHE_ECDSA_WITH_NULL_SHA, TLS_ECDHE_RSA_WITH_NULL_SHA,
SSL_RSA_WITH_NULL_SHA, TLS_ECDH_ECDSA_WITH_NULL_SHA,
TLS_ECDH_RSA_WITH_NULL_SHA, TLS_ECDH_anon_WITH_NULL_SHA,
SSL_RSA_WITH_NULL_MD5, SSL_RSA_WITH_DES_CBC_SHA,
SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_DES_CBC_SHA,
TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5].
2015-09-01 11:58:40,153 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The excluded cipher
suites have been filtered down to [TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,
TLS_ECDHE_RSA_WITH_RC4_128_SHA, SSL_RSA_WITH_RC4_128_SHA,
TLS_ECDH_ECDSA_WITH_RC4_128_SHA, TLS_ECDH_RSA_WITH_RC4_128_SHA,
TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
SSL_RSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA,
TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_RC4_128_MD5,
TLS_EMPTY_RENEGOTIATION_INFO_SCSV, TLS_DH_anon_WITH_AES_128_CBC_SHA256,
TLS_DH_anon_WITH_AES_128_CBC_SHA, TLS_ECDH_anon_WITH_RC4_128_SHA,
SSL_DH_anon_WITH_RC4_128_MD5, TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA,
SSL_DH_anon_WITH_3DES_EDE_CBC_SHA, SSL_DH_anon_WITH_DES_CBC_SHA,
SSL_DH_anon_EXPORT_WITH_RC4_40_MD5, SSL_DH_anon_EXPORT_WITH_DES40_CBC_SHA,
TLS_KRB5_WITH_RC4_128_SHA, TLS_KRB5_WITH_RC4_128_MD5,
TLS_KRB5_WITH_3DES_EDE_CBC_SHA, TLS_KRB5_WITH_3DES_EDE_CBC_MD5].  
2015-09-01 11:58:40,154 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d 
o.a.cxf.transport.https.HttpsURLConnectionFactory: 452 - The cipher suites
have been set to TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256,
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256,
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,
TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,
TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
TLS_ECDH_anon_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_NULL_SHA256,
TLS_ECDHE_ECDSA_WITH_NULL_SHA, TLS_ECDHE_RSA_WITH_NULL_SHA,
SSL_RSA_WITH_NULL_SHA, TLS_ECDH_ECDSA_WITH_NULL_SHA,
TLS_ECDH_RSA_WITH_NULL_SHA, TLS_ECDH_anon_WITH_NULL_SHA,
SSL_RSA_WITH_NULL_MD5, SSL_RSA_WITH_DES_CBC_SHA,
SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_DES_CBC_SHA,
TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.  
2015-09-01 11:58:40,224 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@15fb34f6
to phase prepare-send-ending
2015-09-01 11:58:40,225 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 729 - Chain
org.apache.cxf.phase.PhaseInterceptorChain@6a48ed56 was modified. Current
flow:
  setup [PolicyOutInterceptor]
  pre-logical [SoapHeaderOutFilterInterceptor]
  post-logical [SoapPreProtocolOutInterceptor]
  prepare-send [MessageSenderInterceptor]
  pre-stream [AttachmentOutInterceptor, StaxOutInterceptor]
  write [SoapOutInterceptor]
  marshal [WrappedOutInterceptor, BareOutInterceptor]
  prepare-send-ending [MessageSenderEndingInterceptor]

2015-09-01 11:58:40,226 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor org.apache.cxf.interceptor.AttachmentOutInterceptor@62c555af
2015-09-01 11:58:40,247 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor org.apache.cxf.interceptor.StaxOutInterceptor@97c86d2
2015-09-01 11:58:40,248 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.interceptor.StaxOutEndingInterceptor@2d4e985a to phase
pre-stream-ending
2015-09-01 11:58:40,248 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 729 - Chain
org.apache.cxf.phase.PhaseInterceptorChain@6a48ed56 was modified. Current
flow:
  setup [PolicyOutInterceptor]
  pre-logical [SoapHeaderOutFilterInterceptor]
  post-logical [SoapPreProtocolOutInterceptor]
  prepare-send [MessageSenderInterceptor]
  pre-stream [AttachmentOutInterceptor, StaxOutInterceptor]
  write [SoapOutInterceptor]
  marshal [WrappedOutInterceptor, BareOutInterceptor]
  pre-stream-ending [StaxOutEndingInterceptor]
  prepare-send-ending [MessageSenderEndingInterceptor]

2015-09-01 11:58:40,249 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@70dc6b88
2015-09-01 11:58:40,252 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 242 - Adding interceptor
org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor$SoapOutEndingInterceptor@dee2def
to phase write-ending
2015-09-01 11:58:40,255 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 729 - Chain
org.apache.cxf.phase.PhaseInterceptorChain@6a48ed56 was modified. Current
flow:
  setup [PolicyOutInterceptor]
  pre-logical [SoapHeaderOutFilterInterceptor]
  post-logical [SoapPreProtocolOutInterceptor]
  prepare-send [MessageSenderInterceptor]
  pre-stream [AttachmentOutInterceptor, StaxOutInterceptor]
  write [SoapOutInterceptor]
  marshal [WrappedOutInterceptor, BareOutInterceptor]
  write-ending [SoapOutEndingInterceptor]
  pre-stream-ending [StaxOutEndingInterceptor]
  prepare-send-ending [MessageSenderEndingInterceptor]

2015-09-01 11:58:40,255 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor org.apache.cxf.wsdl.interceptors.WrappedOutInterceptor@7991f11b
2015-09-01 11:58:40,255 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor org.apache.cxf.wsdl.interceptors.BareOutInterceptor@5c6c61f7
2015-09-01 11:58:40,262 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor$SoapOutEndingInterceptor@dee2def
2015-09-01 11:58:40,267 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d             
org.apache.cxf.transport.http.Headers: 284 - Accept: */*
2015-09-01 11:58:40,268 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d             
org.apache.cxf.transport.http.Headers: 284 - breadcrumbId:
ID-***********-60807-1441072675510-0-1
2015-09-01 11:58:40,268 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d             
org.apache.cxf.transport.http.Headers: 284 - Connection: close
2015-09-01 11:58:40,269 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d             
org.apache.cxf.transport.http.Headers: 284 - SERVICE_ENDPOINT:
cxf:bean:samplePrimaryService?dataFormat=PAYLOAD
2015-09-01 11:58:40,269 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d             
org.apache.cxf.transport.http.Headers: 284 - SOAPAction: "Increment"
2015-09-01 11:58:40,269 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d         
org.apache.cxf.transport.http.HTTPConduit:1759 - No Trust Decider for
Conduit '{https://api.uri.com/1.0/gapi.wsdl}transPort.http-conduit'. An
afirmative Trust Decision is assumed.
2015-09-01 11:58:42,102 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d         
org.apache.cxf.transport.http.HTTPConduit: 212 - Sending POST Message with
Headers to https://test.url.com:88888/1.0/trans/ Conduit
:{https://api.uri.com/1.0/gapi.wsdl}transPort.http-conduit

2015-09-01 11:58:42,103 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor org.apache.cxf.interceptor.StaxOutEndingInterceptor@2d4e985a
2015-09-01 11:58:42,103 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 304 - Invoking handleMessage on
interceptor
org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@15fb34f6
2015-09-01 11:58:42,109 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d
org.apache.cxf.configuration.spring.ConfigurerImpl: 452 - Could not
determine bean name for instance of class
org.apache.cxf.bus.managers.WorkQueueManagerImpl.
2015-09-01 11:58:42,115 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d   
org.apache.cxf.workqueue.AutomaticWorkQueueImpl: 182 - Constructing
automatic work queue with:
max queue size: 256
initialThreads: 0
lowWaterMark: 5
highWaterMark: 25

2015-09-01 11:58:46,366 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor
org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@15fb34f6
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor org.apache.cxf.interceptor.StaxOutEndingInterceptor@2d4e985a
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor$SoapOutEndingInterceptor@dee2def
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor org.apache.cxf.wsdl.interceptors.BareOutInterceptor@5c6c61f7
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor org.apache.cxf.wsdl.interceptors.WrappedOutInterceptor@7991f11b
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@70dc6b88
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor org.apache.cxf.interceptor.StaxOutInterceptor@97c86d2
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor org.apache.cxf.interceptor.AttachmentOutInterceptor@62c555af
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor org.apache.cxf.interceptor.MessageSenderInterceptor@114b466
2015-09-01 11:58:46,367 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@4f93ce88
2015-09-01 11:58:46,368 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor
org.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@4e7749db
2015-09-01 11:58:46,368 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d        
org.apache.cxf.phase.PhaseInterceptorChain: 486 - Invoking handleFault on
interceptor org.apache.cxf.ws.policy.PolicyOutInterceptor@60e789fe
2015-09-01 11:58:46,369 DEBUG d87c73ab-1c15-480b-81de-73f3d314148d    
org.apache.camel.processor.DefaultErrorHandler: 170 - Failed delivery for
(MessageId: ID-***********-60807-1441072675510-0-1 on ExchangeId:
ID-***********-60807-1441072675510-0-3). On delivery attempt: 0 caught:
java.net.SocketException: Unexpected end of file from server



--
View this message in context: http://camel.465427.n5.nabble.com/CXF-SOAP-Message-Sent-from-a-Camel-Client-Twice-When-No-HTTP-Response-Received-tp5771010p5771114.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Re: CXF SOAP Message Sent from a Camel Client Twice When No HTTP Response Received

Posted by Raul Kripalani <ra...@evosent.com>.
Are you sure the first request was not an HTTP request that ended with an
401 Unauthorized?

Are you using some kind of HTTP auth? If that's the case and you don't set
up preemptive auth (for HTTP Basic), it is expected for the server to see 2
wire requests.

Could you please try enabling the CXF Logging interceptors, or the Logging
feature? (same thing)

Also, it would help to see your code and configuration.

Thanks!
On 27 Aug 2015 12:11, "segev" <so...@gmail.com> wrote:

> We came across the following issue when using the Camel CXF component to
> invoke a SOAP request with Payload mode over HTTPS on a third party
> service.
>
> The third party server provides two endpoints primary and secondary.
>
> As part of certifying our system with this service (fail over test), we
> were
> required to invoke a test request on the primary (which failed with No HTTP
> Response error).
> The Camel client sent one message (as observed on our Camel Trace log) but
> the server received two requests.
> We used soapUI client to invoke the same test server just to confirm that
> the server register one request only.
>
> Note that the 'Redelivery Policies' were configured with
> 'maximumRedeliveries' of 0.
>
> We ended up replacing the "cxf://.." endpoint with a 'processor' with
> Apache
> HTTPClient and this solve the duplicate message being sent.
>
> We couldn't find any obvious setting on the cxf configuration or the HTTP
> Conduit to prevent this from happening.
> Any suggestions on what may cause a 'NoHttpResponse' error to trigger
> sending a second message will be appreciated.
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/CXF-SOAP-Message-Sent-from-a-Camel-Client-Twice-When-No-HTTP-Response-Received-tp5771010.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>