Tagged Questions
The cookiecontainer tag has no wiki summary.
15
votes
3answers
11k views
Using CookieContainer with WebClient class
I've previously used a CookieContainer with HttpWebRequest and HttpWebResponse sessions, but now, I want to use it with a WebClient. As far as I understand, there is no built-in method like there is ...
8
votes
3answers
2k views
CookieContainer bug?
I'm confused how CookieContainer handles domain, so I create this test.
This test shows cookieContainer doesn't return any cookie for "site.com" but according to RFC it should return at least 2 ...
5
votes
2answers
2k views
C#: Writing a CookieContainer to Disk and Loading Back In For Use
I have a CookieContainer extracted from a HttpWebRequest/HttpWebResponse session named CookieJar. I want my application to store cookies between runs, so cookies collected in the CookieContainer on ...
5
votes
2answers
4k views
Sending cookies using HttpCookieCollection and CookieContainer
I want to tunnel through an HTTP request from my server to a remote server, passing through all the cookies. So I create a new Http**Web**Request object and want to set cookies on it.
...
4
votes
4answers
966 views
Is .NET System.Net.CookieContainer thread safe?
Is the .NET class System.Net.CookieContainer thread safe? --Update: Turnkey answered--
Is there any way to ensure thread safeness to variables which are modified during asynchronous requests (ie. ...
3
votes
1answer
1k views
powershell httpwebrequest GET method cookiecontainer problem?
I'm trying to scrape a website that has user authentication. I am able to do a POST to send my login and stores a cookie. However, after the login I get a 403 error when trying to access the protected ...
3
votes
2answers
933 views
.NET Compact Framework - Cookie-based Web Service access
I need to access Web Service from .NET Compact Framework 3.5 application. Problem is that Web Service uses cookies for authentication. In desktop application I use .NETs CookieContainer(), which is ...
3
votes
0answers
173 views
Browser extension to create independent cookie stores narrower than spec
Does anyone know of a browser extension (preferably Firefox) that allows you to create independent cookie stores at a finer (and configurable) granularity than the specification?
E.g. say ...
3
votes
3answers
1k views
Managing cookies in a WPF WebBrowser control?
Is there a way to read/write the cookies that a WebBrowser control uses?
I am doing something like this...
string resultHtml;
HttpWebRequest request = CreateMyHttpWebRequest(); // fills http ...
2
votes
1answer
63 views
Sending a cookie through a web service call in .NET
I am having issue setting a cookie to a web-service call in .NET. Before using any of the calls of the wsdl provided, i must provide a cookie that is obtained upon logging in to the clients website. I ...
2
votes
1answer
2k views
HttpWebRequest cookie with empty domain
I have an ASP.NET MVC action that sends a GET request to another server via HttpWebRequest. I'd like to include all cookies in the original action's request in the new request. Some of the ...
2
votes
1answer
544 views
Writing cookies from CookieContainer to the IE cookie store
I want to navigate to a page in a web app from a desktop app. "No problem", I hear you say, "just fire up the default browser with the correct URL". However, the web app uses ASP.NET Forms ...
2
votes
2answers
2k views
Adding a cookie to web service port client
I'm using a web service in my app that requires a specific cookie to be set in order access it's methods.
I was using a generated wrapper class for that service that was created using wsdl.exe tool. ...
2
votes
2answers
2k views
handling a comma inside a cookie value using .net's (C#) System.Net.Cookie
I'm creating a client to visit a website and log in + do some tasks automatically, however they recently updated their cookies to (for whatever reason...) contain a comma inside their identification ...
2
votes
3answers
993 views
How to determine Session Timeout using when reusing CookieContainer
I have the following code which re-uses a CookieContainer which logs in on the first request, but just uses the cookie container for requests after.
After a period of time if idle the site will give ...
2
votes
2answers
2k views
surfing with the same CookieContainer
How can you surf on a website assigning the same CookieContainer to each web request?
1
vote
1answer
21 views
When HttpWebRequest.Credentials should be used
I tried to perform a POST using a HttpWebRequest instance to a web url that requires an authentication (an ASP.NET MV3 standart [Authorize] decorated action method with build-in membership system), ...
1
vote
2answers
281 views
Problems sharing CookieContainer between HttpWebRequests on Windows Phone 7 (Mango)
I have a production app that makes two calls via HttpWebRequest. The first call sets a session and receives cookies back to maintain the session, the second call is for data from the api. The ...
1
vote
2answers
293 views
Windows Phone 7 Mango saving the state of a CookieContainer
update1: After more research I'm not sure this is possible, I created a UserVoice entry on fixing it.
I'm trying to save CookieContainer on app exit or when Tombstoning happens but I've run into some ...
1
vote
2answers
188 views
Can't send cookies from vb.net page to php backend
I'm trying to create a proxy for cross-domain AJAX POST queries and, in order to do that, I need to be adding the cookies from my client (browser)'s request into the POST request I send to the PHP ...
1
vote
2answers
437 views
Unable to set CookieContainer on service client in MonoTouch
I have a MonoTouch project using some code I share with a Windows Phone 7 app. This shared code creates a WCF proxy for a RIA Domain Service (using the /Soap endpoint), generated using SLSvcUtil.exe. ...
1
vote
1answer
457 views
C# HttpWebRequest CookieContainer/Collection persisting between Object instances?
I've run into a problem with my Login program. If I login one time, then null CookieContainer and CookieCollection (along with my http class), then try to login again, it still submits the cookies ...
1
vote
2answers
529 views
How to Serialize CookieContainer in wp7 applications?
I tried to Serialize cookie to save it and Deserialize at next time I start my application.But the result of Deserialize is empty.What's wrong?
void SaveCookie() {
var appStorage = ...
1
vote
2answers
3k views
Use cookies from CookieContainer in WebBrowser
Is there any way that I can actually use the cookies from a cookie container (taken from a WebRequest previously) and use them in a WebBrowser control? If so, how would I do this? This is for a ...
1
vote
0answers
366 views
CookieContainer handling of paths (Who ate my cookie?)
I'm working on a project that involves some basic web crawling. I've been using HttpWebRequest and HttpWebResponse quite successfully. For cookie handling I just have one CookieContainer that I assign ...
1
vote
1answer
275 views
How to capture the “JavaScript SetCookie event” in a WebBrowser?
How to capture the "JavaScript SetCookie event" in a WebBrowser? I want to synchronize the cookie to a CookieContainer when a javascript setcookie event occurred simultaneously.
such as
...
1
vote
1answer
449 views
Is this webpage-logging-in Python script correct?
Is this Python script correct?
import urllib, urllib2, cookielib
username = 'myuser'
password = 'mypassword'
cj = cookielib.CookieJar()
opener = ...
1
vote
3answers
3k views
WCF Web Service Client using a CookieContainer
I have developed a small C# form application which calls a web service.
Everything works nicely but I need to keep state and to do that I need to use a CookieContainer if I am not mistaken.
I ...
1
vote
4answers
1k views
Logging in to eBay using HttpWebRequest
I'm trying to log in to my eBay account using the following code:
string signInURL = "https://signin.ebay.com/ws/eBayISAPI.dll?co_partnerid=2&siteid=0&UsingSSL=1";
string postData = ...
1
vote
2answers
2k views
httpwebrequest Cookiecontainer
How do I handle cookies with paths other than "/".
An HttpWebRequest object returns these headers:
HTTP/1.1 302 Moved Temporarily
Transfer-Encoding: chunked
Date: Wed, 10 Jun 2009 13:22:53 GMT
...
0
votes
0answers
25 views
CookieContainer.SetCookie throws exception in specific environment
I use the CookieContainer to store cookies when working with web services. I use the SetCookies method to add cokies to the container. The SetCookie operation throws an exception in a specific ...
0
votes
0answers
28 views
Recreate castle windsor component
I'm using castle windsor to create instance of CookieContainer class which is singleton and it's used by various of my components to create requests to server. If connection to server cannot be made ...
0
votes
0answers
52 views
ArgumentOutOfRangeException on CookieContainer.GetCookies(Uri uri)
I have this strange exception when trying to get the cookies for a given site. The CookieContainer object is a member of a singleton class, so that each HttpWebRrequest across the application has the ...
0
votes
0answers
55 views
Cookie Container doesn't bound with Set-Cookie response header
OK guys so the issue is that I have following code:
HttpWebRequest req;
HttpWebResponse resp;
// go to the site
req = NetLogHttpWebRequestFactory.Create("http://www.facebook.com/");
resp ...
0
votes
0answers
30 views
make two http requests one by one with cookie (vb.net)
in my project (bot)
i want to make two http requests one by one with cookie
like : delete something , then appear (Are you sure to delete?) message ,then click submit
thanks for all
0
votes
0answers
27 views
C# - CookieContainers: Using the same cookies on different domains
Let's say I have to login to Website A before Website B's contents are available. How do I make the login cookies stored on the CookieContainer in Website A available to Website B (so that I'm logged ...
0
votes
1answer
54 views
Where did “CookieContainer” in Visual Studio 2008/2010 Web Services? (Session cookie persistence in WCF)
It seems like a very simple question, but after a couple of hours of research in here and on the web, I'm starting to think I'm perhaps asking the wrong questions or doing something wrong.
In any ...
0
votes
0answers
214 views
Unexpected behavior in CookieContainer object when version is specified in response Set-Cookie C# .NET 2.0-4.0
I am writing an application to log into live.com. I have already successfully implemented this with the WebBrowser control, but I am now trying to do this with a headless browser. I would just use ...
0
votes
1answer
154 views
Why is one cookie missed?
I'm scrapping a page which is the result of a redirect: I visit page1 first, then it redirects to page2 via http-equiv="refresh". I'm scrapping page2. Content on page2 is based on some cookies page1 ...
0
votes
1answer
231 views
Not all cookies being saved using cookiecontainer
I'm using Visual studio 2010 and .NET Framework 4.0.
Code:
public void LoginTo(string username, string password)
{
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(this.Url + ...
0
votes
1answer
88 views
MVC, WebRequests, CookieContainers, and Americart
I want to send the contents of a user's shopping cart to a third-party cart (Americart), and I want to do this in my ActionResult method using the WebRequest class.
But, Americart expects me to put a ...
0
votes
1answer
420 views
Not all cookies being saved using cookiecontainer and webclient/httpwebrequest
I am trying to log in to a site using CookieAwareClient (code here: C# WebClient Log onto Website). When I log in to the site using my web browser, I get about 10 cookies. If I disable JavaScript and ...
0
votes
1answer
627 views
ASP.NET Authorization from Console Application & Timeout
For what its worth, I managed to get a console application to authenticate itself with an existing ASP.NET web application. It just mimics the login page by making a post request to the login page ...
0
votes
1answer
67 views
Quirky cookie behaviour
A colleague of mine asked me to take a look at some cookie behaviour. He created simple web app that created a cookie and inserted the value of a text field, he then checked the cookie collection on ...
0
votes
1answer
277 views
CookieContainer and WebServices
I have WebService:
public class Service1:WebService {
private readonly MNConnection _conn;
private MNLpu _lpu;
public Service1() {
_conn = new ...
0
votes
1answer
1k views
clear cookie container in WebRequest
I'm using the WebRequest object to post data to a login page, then post data to a seperate page on the same site. I am instantiating a CookieContainer and assigning it to the WebRequest object so ...