A: 

Did you checkout the project first by hand in that location? As I understood when I played with phpUnderControl, which uses CruiseControl, you do the first checkout by hand.

Jan Fabry
+2  A: 

It means that CruiseControl.NET cannot find the svn executable. You'll have to specify it with the executable element, e.g:

<sourcecontrol type="svn">
...
    <executable >absolute\path\tp\subversion\executable</element>
Steen
the svn repository is on the internet and not in the machine where Cruise Control is located..
Fleents
executable actually means the program SVN, not the repository
Pondidum
@Pondidum Thanks, I thought it was obvious, from the documentation of the element, but obviously it was not :)
Steen
@Fleents: One thing is the subversion repository itself - where the code resides - but CruiseControl.NET needs the _program_ svn in order to be able to check out the sources, look for diffs, etc.
Steen
I see.. thanks Steen..
Fleents