httpcookie Questions
2
Solved
I am using the Add method of System.Net.CookieContainer. It has worked well over the years but suddenly I am getting:
Exception calling "Add" with "2" argument(s): "The
'Value'='321,386,%2F%3Fa...
Legitimacy asked 12/12, 2013 at 2:21
4
Solved
Let's say I have a website with domain: www.example.com
If I set a cookie with path '***/***' the cookie will be accessible via all pages in the domain, eg:
www.example.com/page1.html
www.example....
Shaniqua asked 23/2, 2009 at 4:34
1
I am using Angular 8, with old backend (ASP.NET MVC 5 Framework) NOT CORE
I am trying to send the cookies of the website so the request from the angular website considered authenticated
I created ...
Libbie asked 19/9, 2019 at 9:35
3
Explanation
here, I sent one get req to ABC.com/Users/Login using Axios after this I sent a post request to ABC.com/Users/Login with form data and Cookie.
but it does not work properly. It works pr...
Lizettelizotte asked 10/3, 2022 at 5:48
1
Below are a few different ways I'm trying to set cookies for a user. I don't understand why I'm getting an error on the HttpCookie. If someone knows what I'm doing wrong please let me know or if yo...
Giglio asked 29/4, 2021 at 0:58
1
On the Html Side
<script src="http://localhost:3002/widget-load?clientId=1" type="text/javascript">
And on the nodejs
app.get('/widget-load', function (req, res) {
const...
Len asked 2/2, 2022 at 7:37
2
The 'sameSite' attribute is not allowed in web.config Asp.net Web project with framework 4.8
I been trying to add sameSite = None attribute to my project cookies as a part of Chrome standards. I am using .net framework 4.8 and it supports sameSite for cookie (https://learn.microsoft.com/en...
Jeanmariejeanna asked 4/8, 2020 at 12:9
5
Solved
If I call setcookie() two times with the same cookie name, I get two cookies created.
How do you update an existing cookie?
Transcontinental asked 26/6, 2011 at 23:57
2
Is there a way in Ember to send cookies with the requests to the backend?
For example: if my client URL is protocol://example.com. The cookies that belong to the same domain will be in the request...
Putsch asked 29/9, 2015 at 19:2
1
Solved
I have a nginx config file which is using prerender service ,
I want to check if a cookie names access_token exist then serve local angular ,
and if cookie is not exist (user is not logged in ) the...
Knitting asked 3/5, 2018 at 7:47
2
AWS's new Application Load Balancer is throwing an error : 400 Bad Request, Request Header Or Cookie Too Large, awselb/2.0
How do i increase the size in aws-elb. It was working fine with the class...
Microsome asked 25/8, 2016 at 12:29
3
Solved
I try to implement a basic cookie helper in my application.
Mainly I check in base controller everytime whether or not if cookie is set.
If cookie
public class MyCookie
{
public static string C...
Seventh asked 23/7, 2011 at 0:10
1
I am fairly new to Jmeter and hence having trouble figuring out the following:
I am testing a web service that needs a valid cookie to be sent in header. I have an endpoint url against which the u...
Argument asked 12/10, 2016 at 23:55
2
Solved
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 webbrows...
Pungent asked 10/12, 2012 at 0:3
7
Solved
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...
Systematology asked 30/4, 2013 at 17:16
1
Solved
I have a web application that talks to a web-server via REST, this web application could be running on a public computer and enables multiple users to logon and logout in a given time period.
All ...
Kunming asked 7/7, 2015 at 1:55
2
I am trying to make connection with an API. When I call a method to this API, it respond with a cookie value sent via HTTP headers.
Will this header be automatically added to the client "my browse...
Heaume asked 11/5, 2015 at 15:40
2
Solved
I use UIWebView that users login in accounts. Users may login with facebook account. He is click button Facebook and opens UIWebView. After login UIWebView close and users may use your personal acc...
Dowlen asked 28/2, 2015 at 8:53
6
Solved
I want my cookie to disappear when the user closes their brower-- I've already set some promising looking properties, but my cookies pop back to live even after closing the entire browser.
HttpCoo...
Centimeter asked 21/12, 2010 at 15:1
3
Solved
This morning I accidentally saw the following snippet code, I was fairly surprised because it work very well.
Don't look at its logic please, I'm just curious why does the HttpCookieCollection (Re...
Nuri asked 20/6, 2009 at 7:51
1
Given:
Domain 1: subdomain1.mydomain.com
Domain 2: subdomain2.mydomain.com
I create a cookie on "Domain 1" using the code below and trying to access the cookie on "Domain 2".
My problem is that...
Limburg asked 7/10, 2013 at 23:33
3
Solved
UPDATE
http://jsfiddle.net/musicisair/rsKtp/embedded/result/
Google Analytics sets 4 cookies that will be sent with all requests to that domain (and ofset its subdomains). From what I can tell n...
Scratches asked 21/12, 2010 at 17:29
2
Solved
By default what will be the expiration time of a cookie added using C# code?
HttpCookie myCookie= new HttpCookie("myCookie");
myCookie.Value = txtCookie.Text;
// Add the cookie.
Response.Cook...
Bobbe asked 25/9, 2013 at 10:19
2
Solved
Is it possible to set a cookie without a domain?
This will mean all domains will have access to it.
Ferrel asked 3/2, 2012 at 18:32
2
Solved
I have a web application with FormsAuthentication and with slidingExpiration="true" in my web.config is not returning a cookie in each request, but when I see the HTTP transactions, I cannot see th...
Scever asked 26/9, 2011 at 11:18
1 Next >
© 2022 - 2024 — McMap. All rights reserved.