Closed raulbajales closed 12 years ago
@gzanussi migro los servlets a jersey y ahora funca de pelos
en un post decia este de Jersey
To set the cookie in your example, you can do something like this:
return Response.ok(new Viewable("/index", model)) .cookie(new NewCookie("name", "Hello, world!")) .build();
But if you want to redirect to "/" you would also need to return 3xx response instead of 200, for example:
return Response.seeOther("/") .cookie(new NewCookie("name", "Hello, world!")) .build();
Creo que lo que faltaba antes era setear el status en 303
303 See Other, see http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.4
Saludos,
On Tue, Oct 16, 2012 at 5:16 PM, Raul Bajales notifications@github.comwrote:
@gzanussi https://github.com/gzanussi migro los servlets a jersey y ahora funca de pelos
— Reply to this email directly or view it on GitHubhttps://github.com/raulbajales/napkin/issues/52#issuecomment-9504926.
@raulbajales @sulika
setear la cookie y hacer send.redirect no funciona como es esperado:
setea la cookie pero vuelve a cargar (solo la primera vez) la "guest" landing, pero si refrescar se carga la "home" landing (deberia cargarse la "home" landing de una)