re:
!> I get the run time error
!> Failed to map the path "ExternalMachineName/Folder1/Folder2"
!> Any ideas, thanks ?
The account ASP.NET is running as,
needs access permissions to any shared folder in a different computer.
If the application resides on a UNC share, ASP.NET always impersonates
the IIS UNC token to access that share unless a configured account is used.
If you provide an explicitly configured account, ASP.NET uses that account in preference to the IIS UNC token.
To access a folder in an external machine,
you'll need to run ASP.NET as a network account with access permissions to that folder and its files.
Do that by configuring ASP.NET's identity in web.config :
<identity impersonate="true"
userName="domain\user"
password="password" />
Of course, you'll need to create a Windows account for "domain\user" on your server, and run:
aspnet_regiis -GA domain\user
....on the web server, so that the domain account has the necessary
permissions to all the directories on the server which ASP.NET needs access to.
Juan T. Llibre, asp.net MVP
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en español :
http://asp.net.do/foros/
======================================