Link to home
Start Free TrialLog in
Avatar of PanamaBosco
PanamaBosco

asked on

Exchange 2007 OWA Access

While trying to access our company exchange 2007 OWA, we keep getting this response and no access is permitted. I have not installed any software. The only thing that was turned on was Windows automatic update on my Server 2008 Std, which also hosts our exchange 2007 Server. Which has been working fine.
Server Error in '/owa' Application.
--------------------------------------------------------------------------------
 
Runtime Error 
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. 
 
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
 
 
<!-- Web.Config Configuration File -->
 
<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
 
 
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
 
 
<!-- Web.Config Configuration File -->
 
<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>

Open in new window

Avatar of Mestha
Mestha
Flag of United Kingdom of Great Britain and Northern Ireland image

That error doesn't really show much of any use unfortunately.
Has it ever worked?
If you run the Best Practises tool from the toolbox, does that show anything of interest?

-M
Avatar of PanamaBosco
PanamaBosco

ASKER

Yes, it was working perfectly until last week after a windows update that forced the server to reboot on its own.
I ran the Best Practices Tool but nothing negative.
ASKER CERTIFIED SOLUTION
Avatar of Mestha
Mestha
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of LeeDerbyshire
You will need to make the change suggested in the error message to get the required debugging information.  The message is suggesting that you find your root web.config file (maybe in C:\inetpub ?), and add the line

  <customErrors mode="Off"/>

somewhere between

  <system.web>

and

  </system.web>
Thanks. frame network 3.5 reinstallation fix it.