I have CruiseControl.NET setup on a server. I had everything working perfectly. Everything meaning, pull the code from SVN, build it, upon successful build, kick off a project setup with a project trigger to deploy the code to the DEV environment. I added some internal security settings, mainly just groups of users. I'm using LDAP security. When I added the security features in, my automated deployment to the DEV server quit working. I can force build the project to make it deploy, but when project #1 builds successfully, I get the error below when the trigger of the deploy project kicks off (I replaced the project name with PROJECT for security purposes):
2010-07-20 13:28:19,354 [PROJECT:DEBUG] Retrieving ProjectStatus from server: tcp://localhost:21234/CruiseManager.rem
2010-07-20 13:28:19,355 [PROJECT:ERROR] Exception: The project 'PROJECT' does not exist on the CCNet server.ThoughtWorks.CruiseControl.Remote.NoSuchProjectException: The project 'PROJECT' does not exist on the CCNet server.
at ThoughtWorks.CruiseControl.Core.Triggers.ProjectTrigger.GetCurrentProjectStatus()
at ThoughtWorks.CruiseControl.Core.Triggers.ProjectTrigger.Fire()
at ThoughtWorks.CruiseControl.Core.Triggers.MultipleTrigger.Fire()
at ThoughtWorks.CruiseControl.Core.ProjectIntegrator.PollTriggers()
at ThoughtWorks.CruiseControl.Core.ProjectIntegrator.Integrate()
at ThoughtWorks.CruiseControl.Core.ProjectIntegrator.Run()
I have an active directory account setup for CruiseControl, and the service is running under that user account (which has admin rights). I have given the CruiseControl user full access to all the projects by adding the user to the my "admin" group in the internal settings section of the CruiseControl config.
Any ideas on how to make the project accessible to CruiseControl so it can see an execute the auto deployment?