Hi all,
I need some help with getting my first ASP .NET page up and running. it is very simple in that it just needs to take in an xml file and apply and csl style sheet to it. The catch is the xml file is located on our fileserver since we have remote sites that update the folder with data. I mapped the folder where the data is from the other server into the website. But when the asp runs it gives me this error.
Server Error in '/' Application.
--------------------------------------------------------------------------------
Failed to start monitoring changes to '\\corp-fileserver\xfr\bandit2web'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Failed to start monitoring changes to '\\corp-fileserver\xfr\bandit2web'.
Source Error:
If i copy the xml file locally and point my asp page to it it works greats. I was reading some other threads about the local ASPNET user needing permission to acces the files, but how do i give a local user permission to acces a network resource. do i need to do something withing the website setup? below is my asp page.
<html>
<body>
<form runat="server">
<asp:Xml DocumentSource="./data/B1.xml" TransformSource="BanditSlim.xsl" runat="server" />
</form>
</body>
</html>
Thanks in advance,
Bueller
I need some help with getting my first ASP .NET page up and running. it is very simple in that it just needs to take in an xml file and apply and csl style sheet to it. The catch is the xml file is located on our fileserver since we have remote sites that update the folder with data. I mapped the folder where the data is from the other server into the website. But when the asp runs it gives me this error.
Server Error in '/' Application.
--------------------------------------------------------------------------------
Failed to start monitoring changes to '\\corp-fileserver\xfr\bandit2web'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Failed to start monitoring changes to '\\corp-fileserver\xfr\bandit2web'.
Source Error:
If i copy the xml file locally and point my asp page to it it works greats. I was reading some other threads about the local ASPNET user needing permission to acces the files, but how do i give a local user permission to acces a network resource. do i need to do something withing the website setup? below is my asp page.
<html>
<body>
<form runat="server">
<asp:Xml DocumentSource="./data/B1.xml" TransformSource="BanditSlim.xsl" runat="server" />
</form>
</body>
</html>
Thanks in advance,
Bueller