A class in the System.Web namespace of the .NET framework which provides a type-safe way to create and manipulate individual HTTP cookies.

learn more… | top users | synonyms

0
votes
0answers
9 views

Replace cookie with same name but different path

I am facing some issue in replacing the existing cookie in the response. The response already has a cookie with say name "x" some path , say "/"and is getting generated by some application. We are ...
0
votes
0answers
28 views

Simplemembership and cookie userdata compatibillity

I am trying to use SimpleMembershipProvider for FormsAuthentication. Now this provider internally creates a FormsAuth cookie without any additional userdata. I want to include some other information ...
1
vote
4answers
34 views

PHP: Expire vs. Clearing a cookie

A very newbie question, but bare with me... With respect to creating cookies with PHP, what is the difference between using the 'expire' parameter of 'setcookie' and just setting the cooking to ""? ...
0
votes
1answer
25 views

Storing User Navigation History in a Cookie/Session

I'm playing with PHP and am looking to achieve the following (I know this is possible with third party plug-ins, but I want to build this on my own as practice): Store the history of all URLs the ...
0
votes
0answers
15 views

Browser cookie domain issue

I have a question about the cookie domain. I currently store the ui layout setting in the cookie. however, for example, see these two different urls: www.example.com/user and www.example.com/user/1. ...
0
votes
1answer
58 views

Can I prevent instantiation of a certian type, except through a helper class? With Resharper or StyleCop perhapse?

After a security audit, I'm trying to enforce the creation of secure HttpCookies in our MVC app. I came up with a helper class to create them: public static class CookieHelper { /// ...
0
votes
3answers
61 views

CookieManager for multiple threads

I am trying to make multiple connections via threads. But every connection seems to override the other's cookies, resulting in the connections using the wrong cookies. inside the threaded class's ...
0
votes
1answer
34 views

Multivalued cookies, not so multivalue?

this is my first attempt at making cookies. The cookie does seem to create itself and it does store value, but only the last value, so basically it always holds 1 item, and when I try to add another ...
0
votes
1answer
72 views

addCookie method doesn't adds the cookie to an httpServletResponse

I gotta set a cookie into a controller but when i try to add it to an HttpServletResponse object it seems to not work, neither with HttpServletResponse.addCookie(String) nor with ...
0
votes
1answer
127 views

How to use Cookies in HttpURLConnection for ANDROID?

Hi I am trying to create Application for Asterisk Interface, The configuration setup has been done properly as I have double checked it. It seems the reason why I can't access Config files from ...
0
votes
0answers
55 views

cannot delete cookies

I've a controller (on tomcat 7) from which I want to delete cookies. My domain is "test.mydomain.de" for example. Here is my code: private void removeCookies(HttpServletRequest request, ...
0
votes
1answer
56 views

How to manage cookies with HttpClient when using a mocking HttpMessageHandler

I have a unit test that calls into a class library by passing in HttpRequestMessage instances and receiving HttpResponseMessages instances back. It's very similar to testing a WebApi ApiController in ...
1
vote
1answer
44 views

Report Viewer with httpOnlyCookies

Is there a way for me to have <httpCookies httpOnlyCookies="true" requireSSL="true" /> in my web.config and still be able to user Report Viewer? From what I can Google/Bing this doesn't seem ...
3
votes
2answers
90 views

Client side Cache vs Cookie

What are the differences between Client side cache and cookie? I know cookie is a data structure. What about client side cache? Is this same with browser cache?
0
votes
1answer
250 views

Persistent cookie expiry set to Session in asp.net mvc?

I am using ASP.NET MVC and want to be able to automatically log somebody in when they return to the site (in exactly same way that this site does). When a user first registers or logs in I set the ...
0
votes
0answers
140 views

C# Proxy Server - Cookie Error

My sincere apologies for code pasting, but it's a tricky one! I'm trying to write a basic http/https proxy in C# that would work like Facebridge. Here is my code: string authority = ...
1
vote
0answers
54 views

ASP.NET Include cookies in web browser cache

I have a website that asks for a user's location and then stores it in a cookie. I want to add caching on the website so any requests to the same url/querystring/cookie will use the client's browser ...
0
votes
1answer
142 views

Cookie encoding Base64

Cookies can be base64 encode. So if I capture pcap, does there any way, I can tell that cookie is base64 encoded? The rationale here is that, one cannot tell seeing the padding (=) sign, that it is ...
-3
votes
2answers
59 views

using browser's cookies to save webApplication data

In my GWT Web Application I want to save some of my app-s data in user's browser cookies. Such as Layout condition, that are changing by user. How can I do this?
0
votes
0answers
77 views

Create cookies with roles based form authentication security

I've been reading about forms authentication in asp.net web-forms, and how it doesn't handle roles unless you override the FormsAuthentication_OnAuthenticate event in the global.asax file. However, it ...
1
vote
1answer
148 views

How to get the cookie value without page refresh

I am setting cookie value in a usercontrol[A] and reading the value in the another usercontrol [B]. But the value is only available on page refresh in the server side. I can see the updated value in ...
0
votes
1answer
284 views

C# MVC4 windows username and cookie issues

First, I'm sad to say I'm not sure whether this code should be in the _Layout.cshtml or somewhere in the controller. It needs to run on all pages, so I've put it in the _Layout.cshtml page. This is ...
1
vote
0answers
51 views

Chrome cookie Created: & Expires: time 2 hours previous

Alternate question: What does chrome use for clock settings? While developing and testing a 30 minute cookie, I discovered that Chrome declares the cookie was created 2 hours earlier and will expire ...
0
votes
0answers
72 views

using net.liftweb.http.S addCookie to the response

My server generates net.liftweb.http.provider.HTTPCookie and uses net.liftweb.http.S addCookie to the response. When I view the cookie from firebug, I see my cookie value is double quoted. Why are ...
0
votes
2answers
66 views

Use A Cookie To Send PersonID To Different Page

Hey guys so atm when the user goes to the holiday page, they can do 1 of 2 things 1)use a drop down box to select 'person name' and click 'view' this will display all the current holidays for this ...
1
vote
1answer
431 views

Disable Cookie read/write in webbrowser c# application

I want websites to not able to read cookies or write new cookies in a webbrowser c# control application. I will prefer to disable all read/write cookies operation for all websites when the webbrowser ...
0
votes
1answer
157 views

Node.js Server-Side HTTP request to ASP script

Currently building an application in node.js. I am trying to make a server-side HTTP request to an ASP script and return the results. If I navigate to the url in my browser, everything is fine. Data ...
0
votes
1answer
55 views

Store information in the cookie

I wish say a datbase table in the cookie, as in the ecommerce website user does not login, therefore the shopping cart item needs to store in the cookie. My problem is, say the table has a list of ...
0
votes
1answer
154 views

C# Expect100Continue header request

I am facing the problem with posting username and password with different domains - one submits the form successfully while the other doesn't(the form data is empty)! The html code on both domains is ...
0
votes
0answers
48 views

how to use cookie as validation in codeigniter rating

I am using 5 star rating in my project.I don't want user to rate twice for the same product.For this I want to use cookie but I don't know how. When user rates the product: ...
1
vote
1answer
211 views

Remember Me does not work in dialog login popup

I am using MVC4 - razor engine. I am displaying login view using a modal dialog nd in the controller I am using "FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe)" for setting the ...
0
votes
1answer
320 views

Sharepoint 2010 setting a cookie expiration date seemsto work when viewed from browser but server code sees 01/01/0001 expiration

here is the to add the cookie to the request HttpCookie cookie = new HttpCookie(myCookie); cookie.Expires = DateTime.Now.AddDays(30); cookie.Value = myValue; cookie.Domain = myDomain; ...
0
votes
1answer
137 views

Browser cookie doesn't work

I am trying to send data from one html page to another. I am using cookies to save info that will be retrieve by the another wabpage. However, when the next page wants to get the value of the cookie, ...
1
vote
1answer
276 views

how to sync cookies between android.webkit.CookieManager and java.net.HttpUrlConnection on Android

I'm making a progam on Android. It has one button and one WebView. If I click the button, It send post message to a web server. (using httpurlconnection) The webview load a page from the same server. ...
0
votes
1answer
57 views

cookies - the misunderstanding

My goal is that I want to log into a site with some java code and do some work when logged in. (in order to write some java cooking handling I first need to understand how this all actually works) The ...
0
votes
1answer
2k views

How to use cookie in Zend Framework 2? [closed]

I cant understand how to use cookies in ZF2? Can some one advise some links with set and get cookie?
0
votes
2answers
74 views

PHP - Working of Cookies

I am facing a difficulty in understanding the usage of cookies in PHP, Please consider the following code snippet public function preExecute() { setcookie("testCookie", "Hello123", time() + ...
1
vote
1answer
158 views

How to download file from a site without requiring any authentication, using QNetworkAccessManager

How to download file from a site without requiring any authentication, if the user is already signed in to the site? Are we supposed to pass cookies. How to do that? I am using firefox browser.Exact ...
0
votes
3answers
167 views

cookie onload event page redirect

How to perform any action after cookie load completed. e.g we have to redirect the url after cookie load complete. $(document).ready(function() { // Handler for .ready() called. }); We have cookie ...
1
vote
0answers
134 views

Unable to access cookie with JavaScript set by another application

Developing Chrome Extension and linked it with the amazon.com, I log in the user from the chrome extension's popup, and setup the cookie their in the pop-up, the problem is that: Amazon's page, ...
0
votes
1answer
132 views

AuthenticationForm - Cross Site Cookies

I've 2 web sites, the first one is myFirst.domain.com and the second one is mySecondSite.domain.com. They stay on two different web servers and my goal is to allow cross site authentication (my real ...
0
votes
3answers
321 views

Set cookie version of incoming httpServletRequest

I have a client that is sending to me a version 1 cookie with a comma delimite value. This should be ok in version 1 of cookies but not allowed in version 0. So this it the cookie test.cookie=1,1 ...
1
vote
1answer
239 views

How can I get the request of a WebClient to use the same Session from the original request?

So a request is made to an ASP.net MVC controller/action. This has an associated session. Part of the action we instantiate a WebClient object and make a call to a resource that is on the same site. ...
0
votes
0answers
47 views

CookieManager for Java 5

CookieManager class is only available for Java 6. How I get the same functionality for Java 5?
0
votes
0answers
133 views

Authenticating a user for a single app with multiple domains

I have one asp.net web application, but two different domains point to this web app. For instance: www.one.com and www.two.com both point to the same web app. I have an issue where I need certain ...
1
vote
1answer
587 views

How to check if a cookie exists even if it was created in another application? (using JS or C#)

I have several applications and one of them is a central application that manages authentication, and where a LogOn page is imported from as an IFrame to the other applications. When the userName and ...
2
votes
1answer
1k views

Manually renew forms authentication ticket:

Yet another problem with forms authentication ticket expiring too soon. I need to use sliding Expiration set to true. I have read forums and understood the problem with the loss of precision, that the ...
1
vote
4answers
318 views

Cookies Do Not Set Quickly

I don't typically play with Cookies, but I wanted to look into this one verses the Session variables I typically use. If I set a Cookie, then immediately try to read from it, I do not get the value ...
1
vote
4answers
573 views

Is ther an alternative for Cookies to remember a users choice?

we've (probably) got upcoming law in the Netherlands where i have to ask users if they allow me to use cookies on my site. Now it's easy when they say 'yes', because i can store that in a cookie. You ...
0
votes
1answer
304 views

Understanding the intended behaviour of HTTPOnly flag

I have a slight confusion regarding HTTPOnly attribute in cookies. I am aware that its main use is for protection against XSS attacks. Let us assume there is web application which has set httponly ...

1 2 3