473,396 Members | 2,037 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,396 software developers and data experts.

Authentification in IIS

Hi,

I am programming my diploma project in ASP.NET using C#. It is about examing
students using internet.

I created web application and when I am testing it through localhost
everything is going fine... But when I would like to access this web
application from another computer, it requires username and password...

But when I access another web application it works without any problem
with asking for authentification...

Could you help me, where and how should I change security permissions...
in IIS or in properties of that folder?

I really need help here...

Thanks

Peter
Nov 19 '05 #1
7 1054
Open the IIS Manager tool on the other computer and under websites/default
website locate your virtual directory. Get the properties and choose the
"Directory Security" tab. Click the top edit button for authentication and
access control and then enable the "anonymous auth" checkbox.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hi,

I am programming my diploma project in ASP.NET using C#. It is about
examing students using internet.

I created web application and when I am testing it through
localhost everything is going fine... But when I would like to access
this web application from another computer, it requires username and
password...

But when I access another web application it works without any
problem with asking for authentification...

Could you help me, where and how should I change security
permissions... in IIS or in properties of that folder?

I really need help here...

Thanks

Peter


Nov 19 '05 #2
I checked that and anonymous auth was enabled and still it was not working...
;(

"Brock Allen" wrote:
Open the IIS Manager tool on the other computer and under websites/default
website locate your virtual directory. Get the properties and choose the
"Directory Security" tab. Click the top edit button for authentication and
access control and then enable the "anonymous auth" checkbox.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hi,

I am programming my diploma project in ASP.NET using C#. It is about
examing students using internet.

I created web application and when I am testing it through
localhost everything is going fine... But when I would like to access
this web application from another computer, it requires username and
password...

But when I access another web application it works without any
problem with asking for authentification...

Could you help me, where and how should I change security
permissions... in IIS or in properties of that folder?

I really need help here...

Thanks

Peter


Nov 19 '05 #3
You can check the web.config file of the current web application which you
are trying to access from another machine. In the webconfig file make sure
you have correct values for elements Deny and allow under <authorization>
blob. * for all users and ? for annonymous users.
You can use Internet Information service Management Console and select the
directoy security tab and Autnentication mode to the Annonymous.

This should probably fix your issues

"Newton" wrote:
Hi,

I am programming my diploma project in ASP.NET using C#. It is about examing
students using internet.

I created web application and when I am testing it through localhost
everything is going fine... But when I would like to access this web
application from another computer, it requires username and password...

But when I access another web application it works without any problem
with asking for authentification...

Could you help me, where and how should I change security permissions...
in IIS or in properties of that folder?

I really need help here...

Thanks

Peter

Nov 19 '05 #4
So then how is security configured in web.config and check the security properties
on the files on the filesystem. You'll need to grant read access to the identity
that your webserver's runnin as. If it's W2K, then that'll be ASPNET, if
it's W2K3 then that's Network Service.

-Brock
DevelopMentor
http://staff.develop.com/ballen
I checked that and anonymous auth was enabled and still it was not
working... ;(

"Brock Allen" wrote:
Open the IIS Manager tool on the other computer and under
websites/default website locate your virtual directory. Get the
properties and choose the "Directory Security" tab. Click the top
edit button for authentication and access control and then enable the
"anonymous auth" checkbox.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hi,

I am programming my diploma project in ASP.NET using C#. It is about
examing students using internet.

I created web application and when I am testing it through
localhost everything is going fine... But when I would like to
access
this web application from another computer, it requires username and
password...
But when I access another web application it works without any
problem with asking for authentification...

Could you help me, where and how should I change security
permissions... in IIS or in properties of that folder?

I really need help here...

Thanks

Peter


Nov 19 '05 #5
Try what harish adviced guess that should work


*** Sent via Developersdex http://www.developersdex.com ***
Nov 19 '05 #6
Well,

I checked that, but there were some problems...

I think that allowing (denying) users should be in <authorization> section.
In <authentication> section I can use only modes = None, Windows, Forms,
PassPort. But if I will write:

<authorization>
<allow users="*" />
</authorization>

it will have another problems, because from my web application I am
connecting to MS SQL Server and it will show me this message:
Login failed for user Newton/ASPNET

Few months ago I solved this problem, when I wrote
<authorization>
<deny users="?"/>
</authorization>
<identity impersonate="true" />

So I have really BIG problem with this application to work correctly... ;-(((

"Harish Shikhare" wrote:
You can check the web.config file of the current web application which you
are trying to access from another machine. In the webconfig file make sure
you have correct values for elements Deny and allow under <authorization>
blob. * for all users and ? for annonymous users.
You can use Internet Information service Management Console and select the
directoy security tab and Autnentication mode to the Annonymous.

This should probably fix your issues


Nov 19 '05 #7
Harish Shikhare wrote:
You can check the web.config file of the current web application which you
are trying to access from another machine. In the webconfig file make sure
you have correct values for elements Deny and allow under <authorization>
blob. * for all users and ? for annonymous users.
You can use Internet Information service Management Console and select the
directoy security tab and Autnentication mode to the Annonymous.

This should probably fix your issues

"Newton" wrote:

Hi,

I am programming my diploma project in ASP.NET using C#. It is about examing
students using internet.

I created web application and when I am testing it through localhost
everything is going fine... But when I would like to access this web
application from another computer, it requires username and password...

But when I access another web application it works without any problem
with asking for authentification...

Could you help me, where and how should I change security permissions...
in IIS or in properties of that folder?

I really need help here...

Thanks

Peter


Hi,

I have also encountered similar problem earlier. Here's what was going
wrong in my case:
My dev machine was part of AD, but i was logged in as local
administrator, hence had unrestricted access to my IIS. When i tried
accessing the IIS from another computer which had been logged on as an
AD user who was part of "User" group, i got prompted with username and
password.

There's a security policy setting which specifies which users are
allowed to access IIS. To fix it add Anonymous group to that setting (i
appologise, i cannot remember the exact name of it off the top of my
head, and since i'm on linux at the mo - no way of finding out either)

Hope this helps,

Nick Goloborodko
http://nickgoloborodko.com
Nov 19 '05 #8

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

Similar topics

0
by: Laurent | last post by:
Hello, I have some problems with ldap and php fot my authentification. I don't understand why. My DN is correct in my ldap server Can you help me please? My php script : $login = $_POST;...
0
by: maxx | last post by:
Hi, I want use the header authentification (HTTP/PHP module), and i've a big problem for to get the varaibles 'PHP_AUTH-*". This is my source code :...
1
by: Jonas S. | last post by:
Hi all, I need some simple component (COM+ or just DLL) source to perform Basic Authentification for ASP solution. Short explanation what I mean: In non secure area I've a form with fields Login...
2
by: Junky | last post by:
Hi folks, well, I've read some articles on authentification, but somehow I can't get along with what I need. I need to get the login name from the OS to check if this person is even able to...
6
by: Ivan Demkovitch | last post by:
Hi! I'm reading thru everything I could find on "user Authentification" topic. There is couple of options ASP.NET suggest: Forms, Passport, etc... My application is simple portal with forums...
6
by: SalamElias | last post by:
I have an application where I added the attribute requireSSL="false" in the authentification elemnt in the dev environment and the apllication compile with no problem. What I want to do is, In...
1
by: bob | last post by:
1) Authentification NT: En ASP (pas ASP.Net), comment on recupere le login/pwd windows ? On veut automatiquement authentifier un utilisateur d'après son login NT (il a pas besoin de se...
3
by: serge calderara | last post by:
Dear all, I clearly underdand the advantage of both type of authentification but is it allowed or possible to set the Authentication mode to Windows and then handle a login form for defined...
1
by: HIK | last post by:
I am porting an ASP.net 1.1 application from a win2K server to win2k3 server. The application uses forms authentification. The authentification information is in a query string. The user goes...
2
by: Greg Hill | last post by:
Hi I'm trying to access a web server that requires authentification for a https page. I can access http pages on that server but get "(401) Authentification Error" for the https page. I have a...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...
0
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,...

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.