在休息服务中拒绝访问路径C:\

时间:2016-03-31 11:12:09

标签: c# asp.net web-services wcf rest

我开发了一种restful服务,它以json格式从共享点站点获取数据,并在驱动器C:\ inetpub \ ProductSelector中创建FormatedProductDetail.json文件

以下是在c盘中创建json文件的代码。

$('#uploads-table').dataTable( {
   drawCallback: function(settings){
      // Workaround: remove click event handler from
      // MP3 links other than the once in the table.
      inlinePlayer.removeEventHandler(document, 'click', inlinePlayer.handleClick);

      inlinePlayer.init() 
   },
   // other options 
});
下面的

是来自web.config的代码

string Jsondata = serialize.Serialize(serviceResponse);
using (WebClient myWebClient = new WebClient())
{    
    myWebClient.UploadString(ConfigurationManager.AppSettings["outputFilePath"], Jsondata);   
}

我只能访问C:\ inetpub \ ProductSelector但不能访问c:\但我仍然从postman那里得到错误

  

访问路径   ' C:\的Inetpub \ ProductSelector \ FormatedProductDetail.json'被拒绝。

1 个答案:

答案 0 :(得分:2)

IIS应用程序池用户帐户需要访问该文件夹