I would like to ask the ff: about Authentication in
ASP.net:
a) Currently, we are experiencing a problem in
authenticating users accesing the web page from different
domains. It displays 'Access is denied.' We used windows
authentication. How do we implement authentication?
b) Scenario 2: Server name is machine1. Virtual host name
for the server is: server.abc.com. Both point to the same
IP address but Access is denied for server.abc.com but
works for machine1. Definition in webconfig is:
<authentication mode="Windows" />
<identity impersonate="true" />
<authorization>
<allow roles="machine1\DashboardUsers" />
<deny users="*"/>
</authorization>
How can user access webpage using server.abc.com as URL.
Ex. http://server.abc.com/webpage
Thanks.
Rgds.