1,修复swfupload上传没有cookie的问题,地址:https://icore-pts.pingan.com.cn/ebusiness/login.do
原因是这货用了FileReference,这玩意在flash下发送http上传请求没有带上cookie。但神奇的是chrome下居然带了。猜测可能是
flash用的ppapi版本,mb用的是npapi。
目前发现
// ::InternetSetCookieA(sURL, NULL, "JSESSIONID=null;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT"); // ::InternetSetCookieA(sURL, "JSESSIONID", "1111111111;path=/;expires=Thu, 01-Jan-2022 00:00:01 GMT");
这种方式设置IE cookie,居然能让FileReference带上cookie。所以在mb里加个钩子,强制设置。