Thanks, I run again into the same issue in another machine, (same OS & ccnet versions) I added preCondition="integratedMode" and it solved the problem.
/Chris On Wed, Mar 10, 2010 at 12:08 AM, Master P <[email protected]> wrote: > Solution: > > Add the following handlers to the Web.config if they are missing: > > <system.webServer> > <validation validateIntegratedModeConfiguration="false" /> > <handlers> > <add verb="*" path="*.aspx" > > type="ThoughtWorks.CruiseControl.WebDashboard.MVC.ASPNET.HttpHandler,ThoughtWorks.CruiseControl.WebDashboard" > name="CCNetHttpHandler" preCondition="integratedMode" /> > <add verb="*" path="*.xml" > > type="ThoughtWorks.CruiseControl.WebDashboard.MVC.ASPNET.HttpHandler,ThoughtWorks.CruiseControl.WebDashboard" > name="CCNetXmlHandler" preCondition="integratedMode" /> > </handlers> > </system.webServer> > > If the handlers are present, add preCondition to each one of them: > > preCondition="integratedMode" > -- Subscription settings: http://groups.google.com/group/ccnet-user/subscribe?hl=en
