IIS 虚拟目录映射到网络驱动器(带驱动器号)但无法创建文件
我在 Windows Server 2003 上使用 C#/ASP.NET、IIS6。
将数据服务器共享文件夹映射到驱动器盘符为 V:\ 的 WebServer
在 Web 服务器上,IIS 创建了一个虚拟目录并使用 V:\ 指向“本地位置”。由于没有“连接为”,不确定将使用哪个用户
在我的 WebMethod 中,我想使用 FileStream.Write() 在共享文件夹上创建文件。
我在操作中遇到 IO 异常,有什么提示吗?
PS 我已经在数据服务器共享文件夹上添加了 ASPNET/NETWORK SERVICE。
谢谢! 加文
I am using C#/ASP.NET, IIS6 on Windows Server 2003.
Map the data server shared folder to the WebServer with driver letter V:\
On the WebServer, IIS created a virtual directory and pointed to 'local location' with V:\ . Since there is no 'Connect As', not sure which USER will be used
In my WebMethod, I want to create file on the shared folder with FileStream.Write().
I got IO Exception on the action, any hint?
P.S. I have added ASPNET/NETWORK SERVICE on the data server shared folder.
thanks!
Gavin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
映射的网络驱动器特定于创建它们的用户帐户:
很可能是
NETWORK SERVICE
(或者如果您在模拟下运行 ASP.NET,网站匿名帐户)尚未获得此映射。要更改虚拟目录指向的位置,请在 IIS 管理器中浏览到您的站点,右键单击虚拟目录并选择属性。然后,您可以选择“位于另一台计算机上的共享”:
Mapped network drives are specific to the user account that created them:
It's very likely that
NETWORK SERVICE
(or if you're running ASP.NET under impersonation, the site anonymous account) hasn't got this mapping.To change the location where the virtual directory points to, browse to your site in IIS manager, right click on the virtual directory and select properties. You can then select "A share located on another computer":
IIS 中的网站有一个相应的应用程序池,这应该告诉您代码将在哪个用户下运行。
您必须为该用户授予该共享的适当权限。
The website in IIS has a corresponding app pool and this should tell you the user under which your code wil be running.
You'll the have to grant the appropriate permissions for that share for that user.