开发者

Coldfusion cookie issue

I'm having issues deleting client cookies with the cfcookie tag, I'm setting the value开发者_开发问答 to "" AND changing the expiration date to now.

But I think it's resetting the cookie in the same page that it deletes it.

Is there a application (or addon for chrome,firefox) that can tell me where it's giving me cookies?


There's Fiddler, an application that logs all HTTP(S) traffic between your computer and the Internet.

1) Run Fiddler.
2) Open your site on the browser you use.
3) Look at the request and response headers on Fiddler. Any cookie set or delete will be there.

Other references:
Fiddler Can Make Debugging Easy. [September 12, 2006]
Fiddler Proxy and HTTP Debugging Tool [December 17, 2010]


As tiangoinu said, use Fiddler for Windows, or if you're on a mac, check out Charles Proxy.

As to your specific question, verify that you're not doing a redirect after you delete the cookie. In order for the cookie to be deleted on the client, the necessary HTTP headers need to be passed to the browser, and sometimes a cflocation will prevent those headers from being sent.


Yes, look at HTTPLive Headers for FireFox. Or some other type of intercept proxy to put between the browser and the server. You can then see the HTTP headers and try to determine where the cookies are being set (or at least how often).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜