Hi! When method serves different content-types, like
@Produces({"application/xml", "application/json", "application/xhtml+xml" })
How to determine served content-type?
Should I manually parse "Accept" header
Message message = PhaseInterceptorChain.getCurrentMessage();
message.get("Accept");
or can I get this information from cxf runtime?
