Link to home
Start Free TrialLog in
Avatar of Cubbybulin
Cubbybulin

asked on

IIS - Default Website and Exchange Server email problem

Microsoft 2011 server and IIS 7.
Implementing a local asp.net website on server in wwwroot.
Website has a web.config file.
The presence of the config file in the wwwroot folder is causing remote email to stop working. for example... "https://remote.xxxxx.com/OWA"
Once the file is removed, the remote email works fine.
Have tried several things but nothing has worked.
Need help! Thanks!
SOLUTION
Avatar of Jeff Perry
Jeff Perry
Flag of United States of America 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
ASKER CERTIFIED SOLUTION
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
SOLUTION
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 Cubbybulin
Cubbybulin

ASKER

Thanks for all your replies. It turned out to be something simple for me but allot of time spent researching.
I simply put the below statement in the New local website (default) web.config file and it worked great.

<location inheritInChildApplications="false">
...other config parameters within
</location>

I found this in the web.config of the OWA and tried it.

Thanks again for your help and quick responses!