After I have implementing the LDAP, I can pass through the authentication.
However, when I browse from another PC, it just gives me error on this.
There is no error when viewing on the server PC.
Is there anyway to solve this??
I have already set full control to the user-group that is allowed to access the page..
My application is put in a folder call "Mscism"
I put the page in a folder at root folder(Mscism) called Intranet ( /Intranet)
And I mapped this page to Mscism/Intranet/Home
Is the issue related to the mapping? Because if I put a html file inside this Intranet folder, I am able to access it
Great Thanks!!
Server Error in '/Mscism' 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>
However, my web.config should be placed already in /mscism
and can be accessed normally.
Why this will happen and how to configure?
Description:
An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: An error occurred loading a configuration file: Failed to start monitoring changes to 'C:\Inetpub\wwwroot\mscism\intranet\web.config' because access is denied.
I also face this in database linkage after i try to add <identity impersonate="true" /> ..when I access a page put in a folder call "admin" under the root
any relevnat message I can read on?
I try the topic post , but i dont know how to set it up..
Cannot open database "Mscism" requested by the login. The login failed. Login failed for user 'STP121\IUSR_STP121'.
Bee90124
Member
33 Points
73 Posts
Application Error after passing the LDAP
Apr 25, 2012 08:11 AM|LINK
Hello,
After I have implementing the LDAP, I can pass through the authentication.
However, when I browse from another PC, it just gives me error on this.
There is no error when viewing on the server PC.
Is there anyway to solve this??
I have already set full control to the user-group that is allowed to access the page..
My application is put in a folder call "Mscism"
I put the page in a folder at root folder(Mscism) called Intranet ( /Intranet)
And I mapped this page to Mscism/Intranet/Home
Is the issue related to the mapping? Because if I put a html file inside this Intranet folder, I am able to access it
Great Thanks!!
Server Error in '/Mscism' 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>kedarrkulkar...
All-Star
34013 Points
5468 Posts
Re: Application Error after passing the LDAP
Apr 25, 2012 08:38 AM|LINK
what is the error message?
go to web.config and change customerror mode to Off... like this
<customErrors mode="Off" />
this will display complete exception message which could help u understand and resolve the issue or post the exception message here
hope this helps...
KK
Please mark as Answer if post helps in resolving your issue
My Site
Bee90124
Member
33 Points
73 Posts
Re: Application Error after passing the LDAP
Apr 25, 2012 07:41 PM|LINK
Hello,
This is the real error message
However, my web.config should be placed already in /mscism
and can be accessed normally.
Why this will happen and how to configure?
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: An error occurred loading a configuration file: Failed to start monitoring changes to 'C:\Inetpub\wwwroot\mscism\intranet\web.config' because access is denied.
Bee90124
Member
33 Points
73 Posts
Re: Application Error after passing the LDAP
Apr 25, 2012 07:45 PM|LINK
I also face this in database linkage after i try to add <identity impersonate="true" /> ..when I access a page put in a folder call "admin" under the root
any relevnat message I can read on?
I try the topic post , but i dont know how to set it up..
Cannot open database "Mscism" requested by the login. The login failed. Login failed for user 'STP121\IUSR_STP121'.