On 21.10.2009 18:57, Paul Sandoz wrote:
> On Oct 21, 2009, at 6:40 PM, Andy wrote:
>> Hi,
>>
>> how can I add an additional header to this call:
>> Response.temporaryRedirect(uri).build()
> Response.temporaryRedirect(uri).header("X-FOO", "foo").build()
Somehow it doesn't work. I have set up a mock-up server that receives
this message an prints out all header fields. The result looks like this
"user-agent, host, accept, connection" but the header field "X-FOO" is
missing. This is my code:
@Path("mypath")
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response myMethod() {
URI uri =
UriBuilder.fromUri("
http://localhost:9998/mockup/dummy").build();
return Response.temporaryRedirect(uri).header("X-FOO", "foo").build();
}
Andy