2013-07-05 69 views
0

在窗口azure门户中,我创建了一个虚拟网络,然后将虚拟机(X)和云服务(Y)添加到那个网络。窗口Azure虚拟网络:Asp.net无法从其他虚拟机访问共享文件夹

在云服务机器Y中,我可以通过窗口浏览器访问虚拟机X中的共享文件夹。

问题是我无法从我的云服务 - Web应用程序访问该共享文件夹。

返回错误:

Access to the path '\\10.0.1.5\Upload\test.txt' is denied. 
Exception Details: System.UnauthorizedAccessException: Access to the path '\\10.0.1.5\Upload\test.txt' is denied. 
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. 

我没有到共享文件夹(每个人,网络服务,iis_iusr,...),但没有运气授予完全权限访问。

当我添加了冒充身份与特定的用户名密码&在web.config:

<identity impersonate="true" userName="username" password="pass" /> 

然后我得到这个错误:

Could not find file '\\10.0.1.5\Upload\test.txt'. 

任何想法?

回答

0

我解决了这个问题。如上所述的冒充工作得很好。我的错误是文件名不小心有重复的分机(test.txt.txt)。