G
Guest
Hi,
on a fileserver I have several images en xml-files that I need to access.
In web.config I have this section
<appSettings>
<add Key="Remote" value="//000.000.000.000" />
</appSettings>
In my codebehind, there is this code
strRemote = ConfigurationManager.AppSettings["Remote"];
Without any problem I can browse, consult, read and open all files on my
remote server. But I cannot write to it. So no files can be updated...
this is the error I get
"unauthorizedaccesException"
"Access to the path '\\000.000.000.000\myFile.xml' is denied."
Yet I have added the correct rights to the server(ASP.NET machine account,
Guest Account for Internet acces - IUSR_myPc)
So there should be something else
but what
anyone?
on a fileserver I have several images en xml-files that I need to access.
In web.config I have this section
<appSettings>
<add Key="Remote" value="//000.000.000.000" />
</appSettings>
In my codebehind, there is this code
strRemote = ConfigurationManager.AppSettings["Remote"];
Without any problem I can browse, consult, read and open all files on my
remote server. But I cannot write to it. So no files can be updated...
this is the error I get
"unauthorizedaccesException"
"Access to the path '\\000.000.000.000\myFile.xml' is denied."
Yet I have added the correct rights to the server(ASP.NET machine account,
Guest Account for Internet acces - IUSR_myPc)
So there should be something else
but what
anyone?