nice, I'll try to investigate about it, thanks @kardan
@niwinz I wonder if it’s not Ratpack that does not like the cookie value
it is possible, but ratpack as is does nothing with cookies, so it can be completly possible that netty is the cause also
ok
I don’t know much about this
I'll try to research about it today
No stress from my side
ok, nice to know
It was just that I made a mistake trying to store a jws token in a cookie
hence tried to store “Token <token” in a cookie
@kardan: seems like cookie value is very limited in allowed characters
and ratpack uses a netty's strict validation of cookies
that causes that netty rejects the cookies with spaces and other chars...
related rfc
and related SO response
I'll update the documentation with this
@niwinz: ok, thanks for the update. I was a bit confused to get the "No response sent for POST request to” error
This is final exception caused by an other internal exception
I don't know if other exceptions are logged or not
if not maybe you need add an optional dependency to [org.slf4j/slf4j-simple "1.7.21" :scope "provided"]
if you run the tests with your modifcation of the cookie test
you will see that the exception chain is pretty big and the no response is caused by
Ah ok, will do. Thanks for the explanation!
glad to help!