Technical questions about coding to Rally Software's various APIs including the App SDK, Ruby & .NET APIs, and Web Service API.
0
votes
0answers
8 views
How can I add a templatecolumn to the local data model for the grid to allow for filtering?
I have grid with a templatecolumn which returns the status label for Portfolio Items % StoryPlanEstimate using the Rally.util.HealthColorCalculator.
How can I add this templatecolumn to the data ...
1
vote
1answer
39 views
How to get custom data in a combo box
I am trying to populate a combobox with a list of Project names. I am able to successfully get all Project names, but I cannot seem to figure out how to add them as a custom set of data to a ...
0
votes
2answers
38 views
Grabbing Name attribute of Tags/Tag in Rally
I have been looking at the rally Object model, but I can't figure out how to grab the Name attribute of a Defect's Tag.
I made sure to include Tag and Tags in my fetch statement. I am storing all the ...
0
votes
1answer
30 views
How do I find out who deleted (removed) an Iteration from Rally?
I am using the Excel Add-in to look at revision history. I would like to locate the information (User, Date, Time, etc.) when an Iteration in Rally was "removed". I am able to obtain this but get ...
0
votes
0answers
20 views
Rallygrid — how to get a standard gear menu?
Does anyone have an example of how to use Rally.ui.grid.RowActionColumnView? I got it to render the gear for a menu but can't get actions to work or find much documentation. I'd love to get the ...
0
votes
1answer
43 views
How do I read the attachment content on a Defect
Using the Rally Java Rest API, after I get the AttachmentContent object, how do I actually get the bytes which hold the content?
1
vote
1answer
33 views
Rally query with multiple filters not working
I am trying to query Rally with multiple filters. I am looking to query Rally for all defects in a specific project that have defects with a specific CreationDate. When I send the query, I get 0 ...
0
votes
1answer
39 views
Making a connection to Rally with Ruby Toolkit for Rally REST API (rally_api)
I'm trying to connect using the ruby API toolkit.
I followed the instructions in: https://developer.help.rallydev.com/ruby-toolkit-rally-rest-api-json
The script is exactly the same as the chapter ...
1
vote
1answer
35 views
Using the LookbackAPI to find Scope Change
Is there a way to query using the LookbackAPI to find all the stories (HierarchicalRequirement) that had a change to PlanEstimate from a certain date (say a week ago) to today?
Or is the best way to ...
1
vote
1answer
64 views
Caused by: com.google.gson.stream.MalformedJsonException: Expected EOF at line 1 column 21
I am trying to run the sample java program to retrieve the top 5 defects from rally. I am getting the following error:
Querying for top 5 highest priority unfixed defects...
Exception in thread ...
1
vote
1answer
26 views
Grabbing CreationDate of Defect Objects
How can I find the CreationDate of a Defect Object in rally?
I have an array of defects objects, and I am able to find all the attributes of defects by doing the following in a loop:
project = ...
1
vote
1answer
41 views
How to add List of comments in Rally java rest API
I have found that if we pass the definition ConversationPosts it will create the comments in Discussion tab. But how to add a list of Conversations to the discussion in Rally Java rest API
JsonObject ...
0
votes
0answers
37 views
Rally Ad-in for Excel- I can not connect to rally
I cannot connect to rally after installation of excel plugin. After every attempt of connetction I receive message listed below:
Error connecting to Rally: Unable to connect to the remote server
...
0
votes
2answers
37 views
Rally Add-in for Excel 2007 not appearing in Excel ribbon
I installed the Rally Add-in for Excel last week and it was working fine. The rally tab was appearing in excel. Today however the rally tab has vanished.
I've tried repairing, uninstalling and ...
1
vote
2answers
29 views
How to prevent page refreshing after each Card drag and drop action? (SDK 2.0p5)
I have simplest implementation of CardBoard:
<!DOCTYPE html>
<html>
<head>
<title>CardBoard Example</title>
<script type="text/javascript" ...
1
vote
1answer
22 views
Modifying item created with rallyaddnew
I'm creating a portfolio item with a rallyaddnew button, but I'd like to modify it before it is created. For example, I'd like to add a particular parent, and add some tags.
I'm guessing I can ...
3
votes
1answer
25 views
Creating an object in SDK2
How do you create a new object (like a defect) using SDK2?
This must be obvious and I'm just missing it-- I've been using SDK2 for a while but this has sever come up. It is something under the data ...
1
vote
1answer
49 views
RallyRestAPI Create Build with ChangeSets
I am creating Rally Build Records as part of a TeamCity to Rally integration but havving issues associating a Build with a ChangeSet.
I find a set of related ChangeSets that match a particular ...
0
votes
1answer
22 views
Changing User Permissions Via Rally API
Our workspace has created a new project which we wish to add all of our 1,000+ users to. This seems most easily done via a script interfacing with the API, rather than making the edits by hand, since ...
0
votes
1answer
28 views
Edit hover in rallygrid missing
Trying to do some cell validation in a rallygrid, but in order to add it I need to use objects in columnCfg instead of just file names. I have something like
{
dataIndex: 'field1',
text: ...
1
vote
1answer
40 views
Rally query for tasks related to a user story with a specific parent
How do I write a Rally query to give me all the Rally tasks for a user story which has a parent user story that has a specific ID?
For an ID of "S666", this works for tasks:
(WorkProduct.FormattedID ...
2
votes
2answers
71 views
How do I connect to Rally from Google App Script?
I'm trying to add Rally functionality to Google Apps Sheets using the Google App Script engine. Everything seems fairly simple, except managing the authentication from a user on the Google Apps system ...
0
votes
1answer
39 views
How to get the connection ID/ AuthToken from the Rally java rest API
To find the connection, do we have the cookies in the response or some connection id, authentication token
2
votes
1answer
52 views
Error Refreshing List in Rally Connector for Visual Studio
I am trying to use the Rally Connector for Visual Studio (with Visual Studio 2010 Pro SP1) and getting the following error when the connector tries to refresh the list 1) after successfully logging in ...
1
vote
0answers
74 views
Querying for and processing all tasks for all team members on a specific project/iteration
I realize this is dangerously close to this question Query tasks by team members; however I still have questions regarding it.
I'm attempting the same general idea from the aforementioned link ...
1
vote
1answer
72 views
Enumerating settable parameters
I successfully setup a connection to my Rally project, but am not able to programatically set the "Submitted By" field when opening defects. I am misnaming the parameter, or it is not settable via the ...
1
vote
1answer
53 views
Querying Allowed values for the possible fields of defects Using Java Rally rest API
I need to check if the field is having allowed values, if so need to get all the allowed values from the system using Java Rally rest API for eg : check if severity is having allowed values, if yes ...
1
vote
1answer
28 views
Create edit Popup link in Rally for User Stories
I have created edit links before for TestCases and other items in Rally using the JavaScript API using:
var editTestCase = function(objectID) {
...
1
vote
1answer
32 views
Obtaining Object IDs for Schedule States in Rally
I have set up a "checkbox group" with the five schedule states in our organization's workspace. I would like to query using the Lookback API with the selected schedule states as filters. Since the ...
1
vote
1answer
35 views
How does the custom grid page size work?
We use the Rally custom grid App to display user stories based on a query. I really don't understand the "Page Size" value.
If the query returns 100 rows and the "Page Size" is set to ten (10). ...
0
votes
1answer
48 views
Filter Rally defect on Last Updated Date
I am using the below code to retrieve the Defect data from rally. Currently, the defect is being filtered by Formatted ID.
Is there any way through i can filter the result by last updated date?
eg: ...
0
votes
1answer
72 views
Rally Java Rest API 302 Temporarily Moved Error
I am creating a integration tool for TeamCity to Rally and using the Java REST API. When I try to create an object of type "build" I get an exception thrown by the restAPI with a 302 "temporarily ...
1
vote
1answer
25 views
What kind of values can “Duration” accept in Rally?
I am using the RallyRestAPI and ideally I want to pass to a test case I am creating through the API a duration time in this format "MM:SS". I am passing for example, "9:45" (9 minutes, 45 seconds), ...
0
votes
1answer
30 views
Call a rest api on defect change in Rally
Is there any way through with I can call a restfull api whenever any change is made to a defect or a user story?
0
votes
2answers
67 views
Getting a list of iterations for a given release
I'm trying to make a custom app that pulls all the iterations for a given release. I'm not seeing how this can be done.
Any Ideas or suggestions?
Thanks
2
votes
1answer
81 views
Create Defect / task specific to User story using Java Rally Rest API
How to create a defect / task to a user story Using java Rally-Rest-API. Also can anyone have the link where the attributes for the rally query is available?
Thanks in advance
2
votes
1answer
41 views
“Department” user field not accessible through the API?
We have set up the available departments for our workspace and were hoping to migrate an existing Excel document with user:department relationships over to the new data fields. I wrote a Python script ...
1
vote
1answer
36 views
Upload Description with inline CSS in Rally .NET SDK
I have desktop utility app to upload updates and create new user stories to Rally. I am using a WPF Richtextbox and am using the XAML to HTML conversion demo found on MSDN.
When i try to upload the ...
1
vote
1answer
27 views
ReleaseComboBox
Having an issue getting the selected value from the ReleaseComboBox.
I am trying to get this value to use as a filter, so my _onChange event looks something like this:
...
1
vote
1answer
56 views
Lookback API: _ItemHierarchy Scoping - Ignore Forbidden Projects
I have been trying to query for User Stories which descend from the RPM by using the Lookback API in conjunction with the _ItemHierarchy filter. The problem seems to be that the Lookback API wants to ...
0
votes
1answer
32 views
Make a Custom Rally Grid a Bulk-Edit capable grid
Is it possible to add Bulk-Edit capabilities to a grid in a custom Rally app?
1
vote
1answer
28 views
Get Rally Workspace Prefixes through the API
Does anyone know if there is a way to query the workspace prefixes through the API? I would like to kow what the prefix is for User Stories (normally US), Test Cases (TC) etc for doing searching ...
0
votes
0answers
35 views
Rally: java application has started to throw an exception, recently
I started using my java application after about two weeks and now I see the following exception everytime I run it:
Exception in thread "main" java.io.IOException: HTTP/1.1 500 Internal Server Error
...
1
vote
2answers
78 views
Recent changes to Rally C# REST API?
1) Earlier this week I was able to create defects and testcases using the Create method, which took 2 arguments at the time (a string and the DynamicJsonObject). However now, it needs three. I ...
1
vote
1answer
50 views
Listen for Rally defect status change
I'm investigating extending the functionality of Rally for my company.
Here's what we want to do: When a user changes the 'State' of a defect we want to run some custom code. I'd like to attach a ...
0
votes
1answer
36 views
Rally rest recyclebin
In the Rally REST Java API (1.40), how can I create a QueryRequest to find a specific DELETED item by FormattedID.
QueryRequest queryRequest = new QueryRequest("recyclebinentry");
I see in an ...
0
votes
1answer
36 views
Rally Python Api: Set Author of a Defect Update
Is there a way for a defect to be updated with Pyral and show the author of the change to be another user other than the user id used to log into Rally?
Here's what I've tried, but it doesn't work:
...
0
votes
1answer
50 views
Rally Python Api: Add discussion to defect
How can I create a discussion item for a Rally defect with Pyral?
This is what I have so far:
rally = Rally(server, user, password)
rally.enableLogging('rallyConnection.log')
...
1
vote
2answers
80 views
C# Rally RestAPI Add or Update A Tag
I cannot find the syntax to add a tag value to a User Story via C#.
Using the latest Rally API binaries, 2.0 Beta.
Closest example I can find is via Java ( How to add Tags to a TestCase in Rally ...
1
vote
1answer
85 views
Rally add test case results in bulk using web services API
We are about to start the phase of updating test results in Rally via the api.
I couldn't find an example to do this via the web services API (e.g. posting xml). Can anyone point me to this?
Also I ...

