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