What do you mean by passport authentication and windows
authentication ?

Answers were Sorted based on User's Feedback



What do you mean by passport authentication and windows authentication ?..

Answer / sandip

IIS provides Windows Authentication and hence, this should
be configured within IIS. There are four different kinds of
Windows authentication available: Anonymous, Basic, Digest
and Integrated Windows Authentication.

* Anonymous Authentication: IIS doesn’t perform any
authentication checks. IIS allows any user to access the
ASP.NET application.

* Basic Authentication: For this kind of authentication,
the Windows user name and password have to be provided to
connect. However, this information is sent over the network
in plain text, and, hence, this is an insecure method of
authentication.

* Digest Authentication: It is the same as basic
authentication except for the fact that the password is
hashed before it is sent across the network. However, to be
using Digest Authentication, we must use Internet Explorer
5.0 or above.

* Integrated Windows Authentication: In this kind of
authentication technique, passwords are not sent across the
network. The application here uses either the kerberos or
challenge/response protocols to authenticate users.
Kerberos, a network authentication protocol, is designed to
provide strong authentication for client-server
applications. It provides the tools of authentication and
strong cryptography over the network to help secure
information in systems across an entire enterprise.

* Passport Authentication: Passport authentication is a
centralized authentication service. This uses Microsoft’s
Passport service to authenticate the users of an
application. If the authentication mode of an application is
configured as “Passport”, and if the users have signed up
with Passport, then the authentication formalities are
pushed over to Passport servers.

Passport uses an encrypted cookie mechanism to
identify and indicate authenticated users. If the users have
already been signed into Passport when they visit the
application page, ASP.NET will consider them as
authenticated; otherwise, the users will be redirected to
Passport servers to login. Upon successful login, they’ll
be redirected back to the application page.

* Forms Authentication: With forms authentication,
custom logic can be built into an ASP.NET application. The
following happens when forms authentication is used in an
ASP.NET application:

o When a user requests a page for the application,
ASP.NET checks for the presence of a special session cookie.

o If the cookie is present, ASP.NET assumes the
user is authenticated and processes the request.

o If the cookie isn’t present, ASP.NET redirects
the user to a web form where the custom logic has been built
into the code. The authentication checks can be incorporated
into the web form, and when the user is authenticated
ASP.NET needs to be informed of the same by setting a
property. Once this is done, ASP.NET creates the special
cookie to handle any subsequent requests.

Is This Answer Correct ?    24 Yes 2 No

What do you mean by passport authentication and windows authentication ?..

Answer / madhuparnab

Passport authentication relies on a centralized service
provided by Microsoft. Passport authentication identifies a
user with using his or her e-mail address and a password
and a single Passport account can be used with many
different Web sites. Passport authentication is primarily
used for public Web sites with thousands of users.

Is This Answer Correct ?    2 Yes 0 No

What do you mean by passport authentication and windows authentication ?..

Answer / madhuparnab

Windows authentication enables you to identify users
without creating a custom page. Credentials are stored in
the Web server s local user database or an Active Directory
domain. Once identified you can use the user s credentials
to gain access to resources that are protected by Windows
authorization.

Is This Answer Correct ?    2 Yes 0 No

What do you mean by passport authentication and windows authentication ?..

Answer / sonia

Passport authentication gives centerlised security to the
multiple web projects or multiple physical directories. In
pasport authentication all the users information we have to
maintain in the 'web.config' file.

using windows authentication we can give security to the
webserver.

Is This Answer Correct ?    2 Yes 3 No

What do you mean by passport authentication and windows authentication ?..

Answer / genius

Passport Authentication is used for Passport. Windows
authentication is used for Windows.

Is This Answer Correct ?    5 Yes 41 No

Post New Answer

More Dot Net Remoting Interview Questions

What is the Difference between CAO and SAO in Remoting.

0 Answers  


What are the security issues if we send a query from the application?

2 Answers   Microsoft, Timken,


Explain the hierarchial description of remoting?

0 Answers  


Define a process?

0 Answers  


Define the lease of the object?

0 Answers  






How do you implement distributed applications in .net?

0 Answers  


How does assembly versioning in .NET prevent DLL Hell?

3 Answers   Satyam, Siebel Systems,


Hello, I want to connect a system in LAN and i want to access that.When ever i am moving a mouse in my desktop the similar thing have to happend in the another system in which i have connected. I need coding for this in c# and .NET . any one please help me.It is very urgent to me Advance thanks. my email id:manojkumarchallagundla@gmail.com

0 Answers   Excel,


About .NET Remoting and types of remoting ?

2 Answers   MMTS, SunGard,


What are the information required to configure remote objects?

0 Answers  


Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?

0 Answers  


What is asynchronous programming?

0 Answers  


Categories