Closed
Bug 734993
Opened 14 years ago
Closed 14 years ago
Firefox not sending cookies when getting application cache manifest files
Categories
(Core :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 722683
People
(Reporter: istvan.matyas, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.78 Safari/535.11
Steps to reproduce:
I generate HTML5 application cache manifest file using ASP.NET MVC3. My controller properly sets the content type of manifest file to (text/cache-manifest). The content of manifest file is valid. The controller validates if user is logged on before sending browser the user's manifest file.
Chrome's result for getting the manifest file:
=================================
New connection from <client_ip>
Server: GET /AppCache/GetManifest HTTP/1.1
Host: <host_ip>
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.78 Safari/535.11
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASP.NET_SessionId=s0oatbahibitw3fcnlxwnluo; .ASPXAUTH=A8AF2E5D3F3E12870EB2BE8EFF8C50F66E149B6736CBE8DA85A8B35A7EE13260B449D6F13D0631266FD8C8E414D532B1109F87C7FAD321DCBBA81D3F1CE8D3F90167876EF7F14A52951E34756813CB399696F6FDCF0A7C70A0952E6DB5429A13E116B8BC6C36B03BDF1E25BBF864DC34F74825307C0BB2C9CEEC3FBC6D28ADD1; ControllerAction=AppCache|GetManifest; IsAuthenticated=True
Client: HTTP/1.1 200 OK
Server: ASP.NET Development Server/10.0.0.0
Date: Mon, 12 Mar 2012 19:20:04 GMT
X-AspNet-Version: 4.0.30319
X-AspNetMvc-Version: 3.0
Set-Cookie: ControllerAction=AppCache|GetManifest; path=/
Set-Cookie: IsAuthenticated=True; path=/
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Content-Type: text/cache-manifest; charset=utf-8
Content-Length: 280
Connection: Close
Client:
CACHE MANIFEST
# Version: 1.9.6
CACHE:
/Offline/Offline.html
/Offline/OfflineMain.html
/Offline/Offline.css
/Scripts/jquery-1.7.min.js
/Scripts/jquery.unobtrusive-ajax.min.js
/favicon.ico
/Content/Images/ios.png
NETWORK:
/Offline/DataLoader.html
/Content/Ping.html
Client:
disconnected
Firefox 11 Beta version (same behavior on Firefox 10 release):
===============================================
New connection from <client_ip>
Server: GET /AppCache/GetManifest HTTP/1.1
Host: <host_ip>
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-ca,chrome://global/locale/intl.properties;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive
Referer: http://10.151.72.152/Offline/Offline.html
X-Moz: offline-resource
Client: HTTP/1.1 302 Found
Server: ASP.NET Development Server/10.0.0.0
Date: Mon, 12 Mar 2012 19:16:25 GMT
X-AspNet-Version: 4.0.30319
X-AspNetMvc-Version: 3.0
Location: /Auth/LogOn?ReturnUrl=%2fAppCache%2fGetManifest
Set-Cookie: ControllerAction=AppCache|GetManifest; path=/
Set-Cookie: IsAuthenticated=False; path=/
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Content-Type: text/html; charset=utf-8
Content-Length: 164
Connection: Close
Client: <html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/Auth/LogOn?ReturnUrl=%2fAppCache%2fGetManifest">here</a>.</h2>
</body></html>
Client:
disconnected
Actual results:
Firefox didn't send ASP.NET authentication cookies.
Expected results:
Firefox should have sent authentication cookies to server when loading the manifest file.
Comment 1•14 years ago
|
||
Do you mean bug 722683 ?
![]() |
Reporter | |
Comment 2•14 years ago
|
||
(In reply to Matthias Versen (Matti) from comment #1)
> Do you mean bug 722683 ?
Yes I did check my browser settings and 3d party cookies were indeed disabled so it looks the same as https://bugzilla.mozilla.org/show_bug.cgi?id=722683. My bad for not checking thoroughly enough.
Thank you for your time!
Updated•14 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•