Click here to Skip to main content
15,888,156 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I have deployed one application IIS 8 in windows server 2012 system.

1: After deploying the application if i am trying to access the application
from the same system using localhost\application and using ip-address\application it is working fine without any issues.

2: If I am trying to access the application from any of the user's system using
ip address\application In IE browser its working fine without any issues.

if the same URL In Chrome and Firefox it is not working.

it is showing error

Error:
The server was unable to process the request to an internal error. for more information about the error, either turn on InclideExceptionDetailsFaults(either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .Net Framework SDK documantation and inspect the server trace logs.

And immediately showing the below arror
Error:
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.

Can you please tell me what might be the problem.
Posted
Updated 8-Jul-15 23:14pm
v9

1 solution

1. 'loclahost' as its name may suggest is a name for the current (local) computer, so no computer A it translates to the IP of computer A, while on computer B it translates to the IP of computer B...To access a site from another computer you can use its name or IP address (or some name stored in DNS), but not the name 'localhost'!
2. It is unclear...You state that from IE there is no error but from other browsers you get and authentication error...You should see (debug) your site for those cases to see what and when and where gone wrong...
 
Share this answer
 
Comments
D-Kishore 7-Jul-15 8:19am    
Thanks for replying,
1. I am trying to access the application same deployment server using localhost\Application. this is not working.But access the application same deployment server using Ip address\Application it is working.

Actually any of the deployed application can be accessed using localhost\application for the local deployment sever.

2. as per your suggestion i have tried to debug the application in development server. there is no issues it is working fine.i am unable to debug the application on the deployment server due to restriction of installing VS2010.

I am trying with any other posibilites.
Kornfeld Eliyahu Peter 7-Jul-15 8:24am    
1. What error do you get when browsing with localhost?
D-Kishore 7-Jul-15 8:25am    
no error it is showing blank page
Kornfeld Eliyahu Peter 7-Jul-15 8:29am    
Are you writing something like this:
http://localhost/AppRoot
or like this:
http://localhost/AppRoot/APage.aspx
D-Kishore 7-Jul-15 8:47am    
I am accessing like http://localhost/application and http://ipaddress/application

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900