Memory usage while working with SOAP Client Proxies

2018-12-17 Thread John D. Ament
I'm using CXF 3.2.7 to communicate with SOAP services. I generate client stubs using wsdl2java. My applicates run on Kubernetes and we use pretty small deployments. We recently saw that at times we run out of metaspace and can see higher memory usage after a few invocations of the soap client.

Re: CXF SOAP message logging does not contain request/response ID (spring boot 2.0/cxf 3.2.6)

2018-12-17 Thread Colm O hEigeartaigh
Hi, REST messages are not logged with IDs either (at least on CXF master). The MessageId is correlated to WS-Addressing, otherwise CXF just generates a random UUID for the message. Colm. On Fri, Nov 16, 2018 at 10:09 PM boca2608 wrote: > After upgrade to spring boot 2.0/cxf 3.2.6, all soap mes

AW: Validate Kerberos token in CXF webservice

2018-12-17 Thread Burkard Stephan
Thanks for the hints! Currently there is no token at all. As a first step I want the service to reject the request because it has no authentication info. I tried to set setIgnoreActions(true) as well as the validatorMap, but I still get (as before) No security action was defined! I found th

Re: Validate Kerberos token in CXF webservice

2018-12-17 Thread Colm O hEigeartaigh
Is it the case that only a KerberosToken encoded as a BinarySecurityToken is in the security header? Or are there signatures etc. in there as well? If (a), then you could try specifying setIgnoreActions(true) on WSS4JInInterceptor. It should process the security header, but won't actually verify th