The cookiecontainer tag has no wiki summary.
0
votes
0answers
32 views
Session cookies - CookieContainer on stack rather than heap causing issue
I've had a look here
C# WebRequest using Cookies
Multiple WebRequest in same session
Reuse Connection with HttpWebRequest in C#
C# keep session id over httpwebrequest
And that's what I'm doing ...
2
votes
2answers
122 views
How can I get all Cookies of a CookieContainer?
I want to export a CookieContainer to JSON using Newtonsoft.Json but unfortunately CookieContainer hasn't an enumerator or stuff, so I can't cycle through it ...
Edit: With my posted solution it ...
0
votes
1answer
85 views
Could not successfully simulate the form login using c# programming code
Currently I'm trying to simulate the Login using c# code (HttpWebRequest/HttpWebResponse), however I ended up with the login.aspx webpage's html text rather than the html text after successful login.
...
0
votes
0answers
52 views
Set cookie to WebBrowser controls from CookieContainer
I tried login into website by HttpWebRequest, and I want to display web content to WebBrowser control. Anyway to convert CookieContainer to WebBrowser cookies ?
1
vote
1answer
358 views
Passing cookie with HttpWebRequest in winforms?
Please see the following code:
objCookieContainer = new CookieContainer();
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://website.com/login.php?user=xxx&pass=xxx");
...
0
votes
0answers
165 views
HttpWebRequest Login to a website(cookies help)
i am trying to login to this website: http://ask.fm ,however i don't seem to have any luck, i tried with cookiecontainer but can not get it to work, here's my code:
Cokie container is declared as ...
1
vote
0answers
164 views
Persist cookie across multiple HTTPWebRequest call (.net)
I have a webpage that need to access webservice at other domain. Due to cross domain policy in browser, I create a server side service as a proxy. I'm using server side HttpWebRequest (.net) to call a ...
1
vote
0answers
177 views
How to save and reuse Cookies in C#?
i`m trying to use cookies in my c# application which is consuming a web service. Login method is working but when i try to use change password method it gives 401 status code.
HTTP.cs
using System;
...
0
votes
0answers
581 views
C# HTTP Web Request CookieContainer to webBrowser.Document.Cookie
string cookie_string = "";
requestss9.CookieContainer = new CookieContainer();
WebRespx1ss9.Cookies = requestss9.CookieContainer.GetCookies(requestss9.RequestUri);
foreach (Cookie cook in ...
2
votes
1answer
473 views
How to get multiple Set-Cookie from WebResponse?
I want to receive and store into CookieContainer multiple cookies.
Server send this code during one request to me (I see this lines into Fiddler):
Set-Cookie: ASP.NET_SessionId=fjkfjrfjeijrfjrifj; ...
2
votes
0answers
193 views
consume secure https webservice in Objective C
I have to edit a code in Objective C, to call a secure https webservice with login, password and cookie Container.
The code actually :
NSString *plistInfosServeurPath = [[NSBundle mainBundle] ...
0
votes
1answer
120 views
Is it possible to transfer cookies from a VB.net program to Mozilla Firefox?
I have vb.net 2010 and I need a way to transfer a cookie container from the program I made to web browsers like Internet Explorer, Google Chrome, Safari and Mozilla Firefox. All answers are much ...
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. ...
1
vote
1answer
457 views
CookieContainer confusion
From what I understand, the basic use of the CookieContainer to persist cookies through HttpWebRequests is as follows:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
CookieContainer ...
0
votes
0answers
506 views
HttpWebRequest ignoring CookieContainer?
I'm having some trouble with the CookieContainer and I'm hoping someone here can help me.
I've got a php endpoint using session-based authorisation. I authorise once, and then use the session to ...
0
votes
2answers
2k views
login with VB.NET and httpwebrequest cookiecontainer
I think there is a problem with cookiecontainer (httpwebrequest)
there are 2 main functions in my class, first getting a new form (a hidden token in form tag), and it should set the cookies (which ...
0
votes
1answer
831 views
Use CookieContainer with WebBrowser control?
I've created a CookieContainer and stored the cookies from a HttpWebRequest in it. Is there a way I can use this CookieContainer on a WebBrowser control?
Thanks for the help.
0
votes
1answer
353 views
CookieContainer data gets lost, why? [C#, web form]
Web form:
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txtBxEmail" runat="server"></asp:TextBox>
<asp:TextBox ID="txtBxPassword" ...
1
vote
2answers
591 views
CookieContainer manual cookie override
Hello i'm having slight problem when setting one cookie. I am using HttpWebRequest class to send my requests. And this code to set cookie i need:
CookieContainer myContainer = new ...
1
vote
1answer
2k views
WebBrowser.Document.Cookie does not take my CookieContainer cookies
I'm trying to display a web page which requires one to be logged in first.
I'm using HttpWebRequest/Response objects to accomplish the logging in part, by collecting the session and authorization ...
0
votes
2answers
207 views
How to share cookies between domain.com and www.domain.com?
I'm using HttpWebRequest to download data from the website, and I noticed a bug related to the cookies.
When you get the data from domain.com, and that website redirects to www.domain.com, which sends ...
0
votes
1answer
408 views
Return CookieContainer from a function
I'm creating an application to do a few different things on a website in the logged in section.
To do this, I must maintain a single continuous Cookie session for all requests I make.
So far I have ...
1
vote
1answer
238 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), ...
2
votes
1answer
1k 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 ...
0
votes
0answers
229 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 ...
1
vote
1answer
494 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 ...
1
vote
1answer
460 views
Where did “CookieContainer” go 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 ...
3
votes
2answers
2k 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 ...
2
votes
2answers
1k 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
1answer
623 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 ...
1
vote
2answers
350 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
1answer
401 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
640 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 + ...
4
votes
3answers
5k 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 ...
1
vote
2answers
869 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
1k 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 ...
0
votes
1answer
146 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 ...
1
vote
2answers
1k 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 = ...
0
votes
1answer
757 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
1k 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 ...
7
votes
2answers
5k 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 ...
5
votes
3answers
9k 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 ...
0
votes
1answer
151 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
586 views
CookieContainer and WebServices
I have WebService:
public class Service1:WebService {
private readonly MNConnection _conn;
private MNLpu _lpu;
public Service1() {
_conn = new ...
7
votes
1answer
792 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 ...
2
votes
1answer
2k 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
1answer
540 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
825 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
6k 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 ...
0
votes
1answer
3k 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 ...


