473,386 Members | 1,754 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Can it Single Sign On on different machines?

Are there any ways it can let users only login once and users can browse
different ASP.Net/ASP web applications on different machines?

ex:
A machine: login web application, a web application
B machine: b web application
C machine: c web application
Users only login on A machine, they don't login again and they can use a, b
and c web applications.
How to do it?

Thanks.

Nov 17 '05 #1
2 1258
Grace,

The only way I know how to do this currently is if all of the sites use
Passport. Trying to do it on your own would be a little difficult, to say
the least. There is an SDK out for it, I believe, which you can find on the
MSDN website.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Grace" <Gr***@discussions.microsoft.com> wrote in message
news:6D**********************************@microsof t.com...
Are there any ways it can let users only login once and users can browse
different ASP.Net/ASP web applications on different machines?

ex:
A machine: login web application, a web application
B machine: b web application
C machine: c web application
Users only login on A machine, they don't login again and they can use a,
b
and c web applications.
How to do it?

Thanks.

Nov 17 '05 #2
Thanks.
Except Microsoft Passport, can Cookies do it?

..Net Framework has HttpCookie Class, it has Domain property.
But, I don't know how to use it.

I tested as following:

A machine:
------------------------------------------------------------
a1 web page:
HttpCookie cookie1=new HttpCookie("a", "1");
Response.Cookies.Add(cookie1);
Response.Write("a=" + Request.Cookies["a"].Value + "<br>"); //it can get
a's value

HttpCookie cookie2=new HttpCookie("b", "2");
cookie2.Domain="www.ABC.com"; //www.ABC.com is domain name
Response.Cookies.Add(cookie2);
------------------------------------------------------------
a2 web page:
Response.Write("a=" + Request.Cookies["a"].Value); //link from a1 web page,
it can get a's value
------------------------------------------------------------

B machine (domain name is www.ABC.com):
------------------------------------------------------------
b1 web page: //link from a1 web page, it displays null, not b's value.
if(Request.Cookies["b"] == null)
Response.Write("null");
else
Response.Write("b=" + Request.Cookies["b"].Value);
------------------------------------------------------------

How to do this?
Thanks.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Grace,

The only way I know how to do this currently is if all of the sites use
Passport. Trying to do it on your own would be a little difficult, to say
the least. There is an SDK out for it, I believe, which you can find on the
MSDN website.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Grace" <Gr***@discussions.microsoft.com> wrote in message
news:6D**********************************@microsof t.com...
Are there any ways it can let users only login once and users can browse
different ASP.Net/ASP web applications on different machines?

ex:
A machine: login web application, a web application
B machine: b web application
C machine: c web application
Users only login on A machine, they don't login again and they can use a,
b
and c web applications.
How to do it?

Thanks.


Nov 17 '05 #3

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

Similar topics

37
by: Claude Gagnon | last post by:
Hi, How can we compare sign of numbers in C++ ? Bye, Claude
6
by: ºa¤Ö | last post by:
i need when a user is logged in, his or her account is locked and no other ppl can login by using these account.
1
by: iMedia User | last post by:
I have a site where I want to use the Web form validators in two separate forms on a single page. One form allows existing users to log in while the second one allows new users to register. The...
1
by: Rodney Lane | last post by:
Hi I am investigating the possibility writing an application which uses single sign on with ASP.Net / VB.Net and was wondering if anyone has endeavoured to do this yet. I will most likely be...
1
by: EricMatz | last post by:
I work for a medium-sized insurance company, developing web-based systems for our independent agents. There are four primary applications we provide - one that serves as an agent portal (ASP), and...
2
by: Spam Catcher | last post by:
Hi all, I'm looking to implement a single sign on solution for .NET applications. This single sign on solution will need to work against a variety of back- end databases (i.e. SQL (mainly),...
4
by: Jai | last post by:
Hi, I have a problem related to Login System. I am developing 3 websites for some institution.Now they want that if anybody had sign up for there site1.com(say), than he or she should be able...
3
by: Pouria | last post by:
Hi, Does anyone have any experience with single sign on for .Net windows applications or windows services? So the idea is to be able to use the user credentials from logging into windows to...
0
amitpatel66
by: amitpatel66 | last post by:
All, Please find below POST about Oracle SINGLE ROW FUNCTIONS which might be useful. SINGLE ROW FUNCTION are those which are executed once for each and every row of the Query. The different...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.