I've quickly put together a command-line application that can be used
for force builds if anyone wants it - 
http://csut017.wordpress.com/2008/09/17/new-faces-old-body/
(I've included both the source and the binaries.)


Craig

On Sep 6, 1:17 am, Daniel Hommel <[EMAIL PROTECTED]>
wrote:
> Michael M writes:
> > Hi Daniel,
>
> > thanks very much for your quick answer! Works fine for me now! :)
>
> > Here is my short solution (python implementation) in case someone is
> > interested:
>
> > import urllib
>
> > def forceCruiseControlProject(serverName, projectName):
> >     projectName = projectName.replace(" ", "%20")
> >     urllib.urlopen('http://%s/ccnet/ViewFarmReport.aspx?
> > forcebuild=true&forceBuildProject=%s&forceBuildServer=local'
> >                     % (serverName, projectName))
> >     return True
>
> > forceCruiseControlProject("buildserver", "My Build Project")
>
> Hmm this looks like a HTTP Get request to me. I always thought the
> dashboard is expecting a post request. Good to know. :-)
>
> regards,
>
> Daniel

Reply via email to