0

我想在特定文件夹 Web 共享上创建(在 IIS 上)。我在日志中没有任何错误,但尚未创建共享(下面的代码)。在事件查看器中,我看到两个“服务控制管理器”错误

A. World Wide Web Publishing Service 服务意外终止。它已经完成了 2 次。

B. IIS Admin Service 服务意外终止。它已经完成了 2 次。

此代码在其他 3 台机器上运行良好,我怀疑这是环境问题,将不胜感激。

// create a web shared for the audio path
IISVirtualRoot vRoot = new IISVirtualRoot();
string errorOut;
string RootWeb = "IIS://localhost/W3SVC/1/Root";
string inPhysicalDirectory =  Path.Combine(index.TargetDir, "WAVS_" + index.ID);
string VirtualDirectory =  "WAVS_" + index.ID;

vRoot.Create(RootWeb, inPhysicalDirectory, VirtualDirectory, out errorOut);
4

1 回答 1

0

是的,我使用 System.EnterpriseServices.Internal

于 2010-12-09T13:05:41.013 回答