Does anyone use the <LaunchCCNetBuild> NAnt task? I need to use it and I keep getting errors. If I setup my NAnt project like:
<project name="test"> <target name="go"> <property name="serverurl" value="http://localhost:21234/CruiseManager.rem"/> <launchccnetbuild serverurl="${serverurl}" projectname="ProjectA" /> <launchccnetbuild serverurl="${serverurl}" projectname="ProjectB" /> </target> </project> I get: ********************************************************************************* [launchccnetbuild] Connecting to CCNet server http://localhost:21234/CruiseManager.rem BUILD FAILED INTERNAL ERROR System.Net.WebException: The server committed a protocol violation. Section=ResponseStatusLine ********************************************************************************* with of course a bunch more trace messages. If I use the project: <project name="test"> <target name="go"> <property name="serverurl" value="http://localhost/ccnet"/> <launchccnetbuild serverurl="${serverurl}" projectname="ProjectA" /> <launchccnetbuild serverurl="${serverurl}" projectname="ProjectB" /> </target> </project> I get: ********************************************************************************* [launchccnetbuild] Connecting to CCNet server http://localhost/ccnet BUILD FAILED INTERNAL ERROR System.Net.WebException: The remote server returned an error: (403) Forbidden. ********************************************************************************* Any help would be appreciated. -- Mike Frederick [EMAIL PROTECTED] ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users