The IBM RTC RESTful api gives an example of a shell script for authenticating with the server:
COOKIES=./cookies.txt
USER=my_user
PASSWORD=my_password
HOST="https://myJazzServer:9092/jazz"
curl -k -c $COOKIES "$HOST/authenticated/identity"
curl -k -L -b $COOKIES -c $COOKIES -d j_username=$USER -d j_password=$PASSWORD "$HOST/authentic...
I'm trying to get the Maven release plugin working with a Jazz.net source control system and Rational Application Developer (RAD, based on Eclipse), but I seem to have run into a catch-22 - I expect I've misunderstood something.
So - I'm working on the command-line in the project directory that has the .pom file. I have to shut RAD down...
So Jazz source control lets you snapshot a repository workspace.
But how would I load a particular snapshot of a workspace on the command line? Doesn't seem like a lot of point to a snapshot if I can't load the project as it was at that point in time...?
ed... I have found a 'new... repository workspace from snapshot' in the RAD plugin...
Using Windows XP and Word Perfect 10 to create my reports which typically are about 50 pages in length with photos and maps as exhibits.
The completed report is showing a size of some 53 megabytes, but the individual exhibits within the report add up to only about 3 megabytes total and the rest is test, which typically is about 215K. ...
I am using the great Tequila-JSON Parser ( http://github.com/inem/tequila ) in an Web-application, to render more or less complex JSON server-replies. More and more the JSON-Templates (.jazz) are growing in somehow real "views". I am trying now, to get an instance-variable from the according controller, into the .jazz template, but this ...