Problem with cruise control and visual svn
- by Andrew
Hi
Wonder if anyone can help, I am experiencing a strange issue with my configuration of cruisecontrol.net and visual svn.
I am setting the current ccnet.config
<sourcecontrol type="svn">
<trunkUrl>https://bladerunner.azullo.local:8443/svn/application/trunk</trunkUrl>
<executable>C:\Program Files (x86)\VisualSVN Server\bin\svn.exe</executable>
<username>test</username>
<password>test</password>
<workingDirectory>D:\Development\Build\application\</workingDirectory>
</sourcecontrol>
<publishers>
<xmllogger/>
</publishers>
<modificationDelaySeconds>10</modificationDelaySeconds>
</project>
When I run this I expect it to go to https://bladerunner.azullo.local:8443/svn/application/trunk, however i get the following
ThoughtWorks.CruiseControl.Core.CruiseControlException: Source control operation failed: svn: OPTIONS of 'http://bladerunner.azullo.local:8080/svn/application/trunk': could not connect to server (http://bladerunner.azullo.local:8080)
. Process command: C:\Program Files (x86)\VisualSVN Server\bin\svn.exe update D:\Development\build\application\ --username test --password ** --no-auth-cache --non-interactive
at ThoughtWorks.CruiseControl.Core.Sourcecontrol.ProcessSourceControl.Execute(ProcessInfo processInfo)
at ThoughtWorks.CruiseControl.Core.Sourcecontrol.Svn.UpdateSource(IIntegrationResult result)
at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Build(IIntegrationResult result)
at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Integrate(IntegrationRequest request)
So for some reason it goes to 'http://bladerunner.azullo.local:8080/svn/application/trunk'
If I remove the username and password elements in the ccnet.config. It goes to the correct url. I dont understand this behaviour.
I have configured visual svn with a certificate using Active directory Certificate Services, if this was the problem I would expect it to show an error regarding the certificate instead of changing the url.
I have cleared our state etc
Any Ideas