java - How to edit the Response object in an CXF out Interceptor? -


i working on out interceptor on rest service , want retrieve response object message, edit , put message of interceptor.

i have tried

message.getexchange().get(response.class); 

and

message.get(response.class); 

but null. out interceptor set in send phase.

any ideas on how can this?

thanks


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -