You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: SERVER_SIDE.md
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,9 @@ var PHPCookies = Cookies.withConverter({
49
49
50
50
Rack seems to have [a similar problem](https://github.com/js-cookie/js-cookie/issues/70#issuecomment-132503017).
51
51
52
-
## Tomcat 7.x
52
+
## Tomcat
53
+
54
+
### Version >= 7.x
53
55
54
56
It seems that there is a situation where Tomcat does not [read the parens correctly](https://github.com/js-cookie/js-cookie/issues/92#issue-107743407). To fix this you need to write a custom write converter.
55
57
@@ -69,6 +71,17 @@ var TomcatCookies = Cookies.withConverter({
69
71
});
70
72
```
71
73
74
+
### Version >= 8.0.15
75
+
76
+
Since Tomcat 8.0.15, it is possible to configure RFC 6265 compliance by changing your `conf/context.xml` file and adding the new [CookieProcessor](https://tomcat.apache.org/tomcat-8.0-doc/config/cookie-processor.html) nested inside the Context element. It would be like this:
0 commit comments