有没有办法配置 Visual Studio 2005 Web 部署项目以将应用程序安装到命名的应用程序池而不是给定网站的默认应用程序池中?
Rob
问问题
7166 次
2 回答
12
这里有一篇描述自定义操作的好文章: ScottGu's Blog
你问的问题在'Ryan'的评论中得到了回答,不幸的是它在VB中,但翻译起来应该不难:
Private Sub assignApplicationPool(ByVal WebSite As String, ByVal Vdir As String, ByVal appPool As String)
Try
Dim IISVdir As New DirectoryEntry(String.Format("IIS://{0}/W3SVC/1/Root/{1}", WebSite, Vdir))
IISVdir.Properties.Item("AppPoolId").Item(0) = appPool
IISVdir.CommitChanges()
Catch ex As Exception
Throw ex
End Try
End Sub
Private strServer As String = "localhost"
Private strRootSubPath As String = "/W3SVC/1/Root"
Private strSchema As String = "IIsWebVirtualDir"
Public Overrides Sub Install(ByVal stateSaver As IDictionary)
MyBase.Install(stateSaver)
Try
Dim webAppName As String = MyBase.Context.Parameters.Item("TARGETVDIR").ToString
Dim vdirName As String = MyBase.Context.Parameters.Item("COMMONVDIR").ToString
Me.assignApplicationPool(Me.strServer, MyBase.Context.Parameters.Item("TARGETVDIR").ToString, MyBase.Context.Parameters.Item("APPPOOL").ToString)
Catch ex As Exception
Throw ex
End Try
End Sub
...其中 APPPOOL 作为自定义操作中的参数提供。
于 2008-10-03T18:58:06.363 回答
3
您可以在部署期间使用 CustomAction 来修改 IIS,这里有一篇文章如何做到这一点: 使用自定义操作在部署期间修改 Internet 信息服务
文章中的示例是在 VB.Net 中,并没有明确显示如何更改应用程序池,但应该很容易弄清楚。
于 2008-10-03T19:02:33.980 回答