I am building up a request similar to this:
Invocation.Builder builder = ClientBuilder.newClient().target("
http://localhost:8080/hello").request(MediaType.TEXT_PLAIN_TYPE).header("foo",
"bar");
Response response = builder.get();However, when the request gets to the server, I don't see the "foo" header there. I'm using CXF 3.0.5 (I've tried with newer versions too, but it doesn't work).
