IIS 虚拟目录映射到网络驱动器(带驱动器号)但无法创建文件

发布于 2024-10-08 18:02:53 字数 362 浏览 3 评论 0原文

我在 Windows Server 2003 上使用 C#/ASP.NET、IIS6。

  1. 将数据服务器共享文件夹映射到驱动器盘符为 V:\ 的 WebServer

  2. 在 Web 服务器上,IIS 创建了一个虚拟目录并使用 V:\ 指向“本地位置”。由于没有“连接为”,不确定将使用哪个用户

  3. 在我的 WebMethod 中,我想使用 FileStream.Write() 在共享文件夹上创建文件。

    我在操作中遇到 IO 异常,有什么提示吗?

PS 我已经在数据服务器共享文件夹上添加了 ASPNET/NETWORK SERVICE。

谢谢! 加文

I am using C#/ASP.NET, IIS6 on Windows Server 2003.

  1. Map the data server shared folder to the WebServer with driver letter V:\

  2. 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

  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

携君以终年 2024-10-15 18:02:53

映射的网络驱动器特定于创建它们的用户帐户:

通过 IIS 使用映射驱动器 - MS KB257174

访问远程计算机上的 Web 服务器内容的首选方法是使用遵循通用命名约定 (UNC) 的共享。

很可能是 NETWORK SERVICE(或者如果您在模拟下运行 ASP.NET,网站匿名帐户)尚未获得此映射。

要更改虚拟目录指向的位置,请在 IIS 管理器中浏览到您的站点,右键单击虚拟目录并选择属性。然后,您可以选择“位于另一台计算机上的共享”:

alt text

Mapped network drives are specific to the user account that created them:

Using Mapped Drives with IIS - MS KB257174

The preferred method of accessing content for the Web server that exists on a remote computer is to use shares that follow the universal naming convention (UNC).

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":

alt text

温柔一刀 2024-10-15 18:02:53

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文