473,748 Members | 8,367 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Authorization cookie not valid for subdomains ?

Hi,

I create a one day ticket in my authentication code like this :

private void btnLogin_Click( object sender, System.EventArg s e)
{

string _userId = txtUserId.Text;
string _password = txtPassword.Tex t;

if (FormsAuthentic ation.Authentic ate(_userId,_pa ssword))
{
FormsAuthentica tion.RedirectFr omLoginPage(_us erId,false);
FormsAuthentica tionTicket authTkt = new FormsAuthentica tionTicket(1,
"mycookie", DateTime.Now, DateTime.Now.Ad dDays(1), true, _userId);
HttpCookie authCookie = new
HttpCookie(Form sAuthentication .FormsCookieNam e);
authCookie.Valu e = FormsAuthentica tion.Encrypt(au thTkt);
authCookie.Expi res = DateTime.Now.Ad dDays(1);
Response.Cookie s.Add(authCooki e);
}

}
Recently I added some subdomains to my site and I realize that the
authorization is not valid there, i.e. the user appears as not logged
in.
How can I make an authorization ticket valid for all the domain and its
subdomains ?

Nov 19 '05 #1
2 2748
RCS
authCookie.Doma in = "mydomain.c om";

That will make the cookie valid for any subdomain within mydomain.com

To be safe, you may want to do:

authCookie.Path = "/";

too - that makes the cookie valid for any directory within the site too...

HTH

<cr************ @hotmail.com> wrote in message
news:11******** **************@ o13g2000cwo.goo glegroups.com.. .
Hi,

I create a one day ticket in my authentication code like this :

private void btnLogin_Click( object sender, System.EventArg s e)
{

string _userId = txtUserId.Text;
string _password = txtPassword.Tex t;

if (FormsAuthentic ation.Authentic ate(_userId,_pa ssword))
{
FormsAuthentica tion.RedirectFr omLoginPage(_us erId,false);
FormsAuthentica tionTicket authTkt = new FormsAuthentica tionTicket(1,
"mycookie", DateTime.Now, DateTime.Now.Ad dDays(1), true, _userId);
HttpCookie authCookie = new
HttpCookie(Form sAuthentication .FormsCookieNam e);
authCookie.Valu e = FormsAuthentica tion.Encrypt(au thTkt);
authCookie.Expi res = DateTime.Now.Ad dDays(1);
Response.Cookie s.Add(authCooki e);
}

}
Recently I added some subdomains to my site and I realize that the
authorization is not valid there, i.e. the user appears as not logged
in.
How can I make an authorization ticket valid for all the domain and its
subdomains ?

Nov 19 '05 #2
Thanks, that worked!

Nov 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1889
by: Daan | last post by:
I have a website that is accessible (at least from our local campus network) by four different ways: 1) the full url: http://campuslaan37.student.utwente.nl/ 2) the short url: http://campuslaan37/ 3) an alias: http://cam37.student.utwente.nl/ 4) the short alias: http://cam37/ I use cookies to save and set some preferences etc. However, if you surf from e.g. (1) to (3), it is treated as an entirely different
0
1469
by: Chris | last post by:
Hi all, I'm having trouble setting an authorization cookie from a web service. I need to set an authorization cookie on the client machine when the proper soap header is sent with username/password. This piece works fine and authenticates against the soap header but my authorization cookie will not set.
4
2548
by: Amil | last post by:
I'm using Forms authorization. In my <forms> section I have timeout="30", but when I examine the cookie, it shows it expiring in 2055? Why? <authentication mode="Forms"> <forms loginUrl="/login.aspx" protection="All" timeout="30" path="/"> <credentials passwordFormat="Clear">
7
7776
by: Doug | last post by:
An ASP.NET session cookie set on "www.mydomain.com" can not be accessed on "search.mydomain.com"; hence, a new session and cookie are being created on every sub-domain. This is occuring because ASP.NET always sets the Session cookie domain to the full domain (e.g. "www.mydomain.com") instead of the parent domain (e.g. "mydomain.com") The problem with this is when the visitor goes to a different sub-domain (e.g. "search.mydomain.com"),...
7
1298
by: dee | last post by:
When i sign on using <authentication mode="Forms"> <forms loginUrl="LogIn.aspx"/> </authentication> My login code is: If MyCheckPassword(name, pwd) Then FormsAuthentication.RedirectFromLoginPage(name, True)
1
6717
by: CR1 | last post by:
I found a great cookie script below, but don't know how to make it also pass the values sent to the cookie, to a querystring as well for tracking purposes. Can anyone help? If there was a way to simply pass the values in a cookie to the querystring that would be even easier, but from what I've been able to tell, cookie values can't be passed to a querystring. I'm sure the answer will help alot of others who are using this script, and would...
6
2123
by: taylor.ettema | last post by:
I wish to create an application that will be spawned within a host web application after the container app has authorized a user. These two apps are seperately developed/maintained, and can only share information via the normal methods (post/get, cookies, etc...). What is the best and most secure way to pass authorization to the spawned application?
2
10228
by: flip79 | last post by:
Hello and sorry for my english, I'm italian... I manage a site with a normal address like: www.mysite.com I'm using a cookie to store nicks of my users, with a code like this: ---- Response.Cookies("mycookie").Expires = #January 1, 2030# Response.Cookies("mycookie").Path = "" Response.Cookies("mycookie").Secure = FALSE Response.Cookies("mycookie")("nick") = nick ----
1
3322
by: Abandoned | last post by:
Hi.. I set cookie from www.domain.com but i'cant read this cookie from subdomain.domain.com How can i set cookie for all subdomains ? My set cookie code is: cookie = Cookie.Cookie('Login-Data', data) cookie.expires = time.time() + 9920000 Cookie.add_cookie(req, cookie)
0
8984
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8823
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9530
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9312
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9238
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8237
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6073
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4864
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3300
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.