Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi all, I need some help with ge

Status
Not open for further replies.

bueller

Programmer
Aug 27, 2002
76
US
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=&quot;server&quot;>
<asp:Xml DocumentSource=&quot;./data/B1.xml&quot; TransformSource=&quot;BanditSlim.xsl&quot; runat=&quot;server&quot; />
</form>

</body>
</html>

Thanks in advance,
Bueller
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top