无法以编程方式在 IIS 6.0 上添加通配符脚本映射
我使用 VS 2008 创建了一个 Web 安装项目。我创建了一个自定义操作,以编程方式为我的虚拟目录添加通配符脚本映射。该应用程序安装良好,但是在自定义操作期间无法添加脚本映射。我已经在带有 IIS 6.0 的 Win 2003 服务器和带有 IIS 5.1 的 WinXP 上尝试过此操作。我束手无策,试图找出问题所在。下面是我使用的 VB 代码:
Dim ScriptMap = "*," + ISAPIPath + ",0,POST"
Dim de As DirectoryEntry
de = New DirectoryEntry("IIS://LM/W3SVC/1/ROOT/MyApp")
de.Properties("ScriptMaps").Add(ScriptMap)
de.CommitChanges()
出现一个对话框,指出 RPC 服务器不可用。我已使用元数据库资源管理器验证了 IIS 元数据库 URL。有问题的指点吗?
谢谢,
瓦米普
I have created a Web Setup project using VS 2008. I have created a custom action to programatically add a wildcard scriptmap for my virtual directory. The app installs fine, but, during custom action, fails to add scriptmap. I've tried this on Win 2003 server with IIS 6.0 and WinXP with IIS 5.1. I am at my wits end trying to figure out the problem. Here's the VB code I used:
Dim ScriptMap = "*," + ISAPIPath + ",0,POST"
Dim de As DirectoryEntry
de = New DirectoryEntry("IIS://LM/W3SVC/1/ROOT/MyApp")
de.Properties("ScriptMaps").Add(ScriptMap)
de.CommitChanges()
A dialogbox appears stating that RPC server is unavailable. I have verified IIS metabase URL using metabase explorer. Any pointers to the problem?
Thanks,
Vamyip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于修好了!问题出在元数据库路径上。下面是工作代码。邪恶的小变化:)
Fixed it finally! The problem was with Metabase path. Below is the working code. Wicked little change :)