Having a little trouble and i wanted to see what you'd all suggest. Thanks for your input.
We have an ASP.NET website, one feature is that this website will allow users to upload files and then the server saves them to a UNC path.
Some of our users cannot upload the files. I think this would likely be security issues as these users are in a different domain and therefore cannot access the UNC path to where the system is trying to save the file.
The web site uses Windows authentication to validate users. The file server and the webserver are 2 separate machines but are located within one domain the users are coming from another domain
the system is using System.Web.HttpPostedFile.SaveAs(String SaveLocation)
to save the file
what i can't figure out is why the file is not being saved using the AppPool's settings and how to configure this to not try to use the client credentials to save the files.
EDIT: I thought if it was controlled by the app pool than ALL of our users would be having troubles. but it seems to just be the ones outside the domain that has the fileserver.
Any thoughts?
Thanks for the insight.

