Cookie rejected: violates RFC 2109: domain must start with a dot
程序员文章站
2022-07-13 12:58:33
...
blog迁移至:http://www.micmiu.com
使用httpclient时发生如下告警信息:
解决方法:
需要给postMethod或者getMethod的参数:http.protocol.cookie-policy设置值,代码如下:
转载请注明来自:Michael's blog @ http://sjsky.iteye.com
-----------------------------------分 ------------------------------------隔 ------------------------------------线 --------------------------------------
使用httpclient时发生如下告警信息:
WARN - HttpMethodBase.processResponseHeaders(1505) | Cookie rejected: "$Version=0; U_TRS2=00000061.27163dd.4dfc994f.29e14b4d; $Domain=.sina.com.cn; $Path=/". Illegal domain attribute ".sina.com.cn". Domain of origin: "weibo.com"
解决方法:
需要给postMethod或者getMethod的参数:http.protocol.cookie-policy设置值,代码如下:
postMethod.getParams().setParameter("http.protocol.cookie-policy",CookiePolicy.BROWSER_COMPATIBILITY); getMethod.getParams().setParameter("http.protocol.cookie-policy",CookiePolicy.BROWSER_COMPATIBILITY);
转载请注明来自:Michael's blog @ http://sjsky.iteye.com
-----------------------------------分 ------------------------------------隔 ------------------------------------线 --------------------------------------
上一篇: jQuery 显示与隐藏元素