在ASP托管的Web服务中拒绝FileStream访问

时间:2009-09-15 14:19:58

标签: asp.net wcf file

我有以下

//get the data as a string.
 using (FileStream fs = File.Open(location, FileMode.Open))
 using (StreamReader reader = new StreamReader(fs))
 {
     rawData = reader.ReadToEnd();
 }
在WCF主机的Web配置中

<authentication mode="Windows"/>
<identity impersonate ="true"/>

然而我收到此错误

访问路径'D:\ some dir \ rules.txt'

主机在IIS 6中托管,使用VirDir,使用annon访问帐户作为我,而rules.txt可以完全访问我。

我错过了什么。我也给了“每个人”访问,但没有运气。

1 个答案:

答案 0 :(得分:0)

解决,

可以访问网络服务帐户