What do I need to take into consideration when, on an ASP.Net website, to
get a file listing (I already have the code) from a another network server?
Currently I get an 'Access to path denied' message
Alex Meleta - 16 May 2008 17:47 GMT
Hi Seth,
This security issue means that aspnet_wp.exe process runs under a the security
context of the ASPNET on IIS 5 or Network Service on IIS 6. This account
is not having access permissions on the file system. So you either need to
give file access permissions to the folder(s) for ASP.NET account or impersonating
via <identity impersonate="true"/> or specifing certain identity.
Regards, Alex
SW> 'Access to path denied'
SW>
George Ter-Saakov - 16 May 2008 18:40 GMT
Look here
http://www.eggheadcafe.com/software/aspnet/31802500/access-network-share-from.aspx
George.
> What do I need to take into consideration when, on an ASP.Net website, to
> get a file listing (I already have the code) from a another network
> server?
>
> Currently I get an 'Access to path denied' message