Re: WSRM changing default sequence id generator

2015-10-21 Thread kupkaj
Yes, this part is pretty straightforward, but I don't know how to configure RM feature to use my RMManager. So far I came up with this configuration http://cxf.apache.org/ws/rm/manager";>

Re: Any planned date for releasing 3.0.7?

2015-10-21 Thread Daniel Kulp
> On Oct 19, 2015, at 5:46 AM, Francesco Chicchiriccò > wrote: > > Hi all, > at Syncope we are planning to release 1.2.6 soon (~ 1 or 2 weeks), which > currently depends on CXF 3.0.7: is there any planned date for releasing it? I’m hoping next week sometime. I think we need a release of WSS

Re: CXF IOUtils truncating POST request content?

2015-10-21 Thread titaniumlou
logged a bug here https://issues.apache.org/jira/browse/CXF-6651 -- View this message in context: http://cxf.547215.n5.nabble.com/CXF-IOUtils-truncating-POST-request-content-tp5761619p5762105.html Sent from the cxf-user mailing list archive at Nabble.com.

Message content empty after getContent

2015-10-21 Thread behowar
I have an interceptor that takes the payload from a REST service and processes it in the handleMessage. After processing the chain continues and enters into the actual web service business logic. When i use getContent, the request data is coming to the business logic empty. public class LogWriter

Re: CXF Spring interceptors without web.xml

2015-10-21 Thread behowar
I was able to figure this out. JAXRSServerFactoryBean factory = RuntimeDelegate.getInstance() .createEndpoint( jaxRsApiApplication() , JAXRSServerFact

Re: WSRM changing default sequence id generator

2015-10-21 Thread Aki Yoshida
I think you need to instantiate RMManager and set your custom generator there to have it picked up by the cxf bus. something like 2015-10-21 13:36 GMT+02:00 kupkaj : > Hello, > > I would like to use custom id generator instead of default > RMManager$DefaultSequenceIdentif

WSRM changing default sequence id generator

2015-10-21 Thread kupkaj
Hello, I would like to use custom id generator instead of default RMManager$DefaultSequenceIdentifierGenerator. The question is - how to configure (using spring) RM feature to use my class instead of the default one? Ideally, this configuration should take place on endpoint interceptor provider l

Re: Apache CXF overriding the Content-Type when using WebClient for GET

2015-10-21 Thread Sergey Beryozkin
Hi, all you need to do is this: > add a cxf-rt-transports-http-hc (Maven) dependency and set a WebClient > "use.async.http.conduit" property when doing the calls - or use > WebClient async() switch to use JAX-RS 2.0 AsyncInvoker - and do not > set that property at all WebClient.getConfig(rsCli

RE: Apache CXF overriding the Content-Type when using WebClient for GET

2015-10-21 Thread Khare, Aparna
Hi, I tried doing this AsyncHTTPConduit conduit = (AsyncHTTPConduit) WebClient.getConfig(rsClient).getConduit(); But this is also not working. Can you please let me know when we can expect the fix as you mentioned that this will be fixed in the coming release Thanks, Aparna -Original M