Technical questions about coding to Rally Software's various APIs including the App SDK, Ruby & .NET APIs, and Web Service API.

learn more… | top users | synonyms

1
vote
2answers
381 views

Rally APIs: How to copy Test Folder and member Test Cases

This question was asked by a different user earlier: Copying Test Cases and Test Folder using Rally Python or Ruby API [closed] but closed by moderators as being an overly broad question. However, ...
1
vote
1answer
361 views

Login to Rally using app sdk

How I can programmatically login to Rally, using app sdk? I use it outside Rally. It redirects to login page first. And I want to login without user entering credentials.
2
votes
1answer
304 views

Lookback API: Find all leaf node stories under a known parent

In Rally Webservices API, if I want to traverse a Story hierarchy, it's necessary to do a query for the parent story, then grab the Children collection(s) off of the returned Stories, and then ...
1
vote
3answers
418 views

Filtering epics from Kanban board

I would like to start by saying I have read Rally Kanban - hiding Epic Stories but I'm still having trouble on implementing my filter based on the filter process from the Estimation Board app. ...
0
votes
1answer
140 views

I am having trouble determining a proper way to divide resources evenly in a excel-like table

I will try to explain this the best way I can, but feel free to ask for clarifications. First, I will try to explain the problem. I need to calculated the number of resource cost (points) for any ...
4
votes
2answers
524 views

RALLY: Determine a parent User Story's release

In Rally we have the following story structure: Parent Story 1 |__ Sub Story 1 |   |__ Child Story 1 |   |__ Child Story 2 | |__ Sub Story 2     |__ ...
2
votes
1answer
438 views

Greasemonkey script only runs when page is reloaded

I am working on a Greasemonkey script to turn some text into links on a a Rally page. The script works fine only when I reload the page. If I navigate to the page in any manner (links, browser ...
3
votes
1answer
128 views

Counts on the server side via WSAPI?

Is it possible to do object counts on the server side of Rally with the WSAPI? For example, I've got an app that would like to count the number of unresolved defects for each project in our ...
3
votes
1answer
81 views

Rally AppSDK: Is there a way to facilitate “Inter-Panel” communication between Apps in the new layout schema

So I'm just getting used to and getting my arms around the new "panel-based" App scheme released with the 5/5/2012 version of Rally. At first it was a bit frustrating to lose the window real estate ...
3
votes
3answers
272 views

Rally: Pull stories counts by schedule state for a release?

I'm trying to pull from the API of story counts for the latest release, broken down by schedule state. There's a report that does that currently, but I don't see any exposed method in the API. Does ...
3
votes
1answer
901 views

How to create a Task belonging to an Iteration using Rally Api and .NET

I am new to the Rally API and just having some trouble creating a Task using the Rally.RestApi library. I need to create a Task (using .NET) and associate it with a User Story (in which the User ...
2
votes
1answer
31 views

App works as desired in debug mode but crashes in Rally environment

I have created an app that creates a grid dynamically, as well as lets the user make changes to one of the grid columns via a 'numberfield' editor. Everything is working great in the debug environment ...
2
votes
0answers
187 views

Copying Test Cases and Test Folder using Rally Python or Ruby API [closed]

Is it possible to do this: Copy a test folder with testcases to another new folder
2
votes
1answer
177 views

How to add Tags to a TestCase in Rally using Rally's JAVA API?

I have been struggling with adding a tag to a testcase in Rally. The tag is already present in the Tags collection. But I cannot add it to a testcase. Can some provide an example about how to do this? ...
2
votes
2answers
54 views

SDK2: Links in Rally Grids and column width

I'm displaying a link to a defect in a Rally Grid in the simple way: columnCfgs: ['FormattedID', 'Name', ...] This creates a link to the defect, just like it should. But the column width is way ...
2
votes
1answer
124 views

Fetch a specific tag from Rally in order to compute a value in another field

I'm extremely new to Rally development so my question may sound dumb (but couldn't find how to do it from rally's help or from previous posts here) :) I've started from the rally freeform grid ...
2
votes
2answers
130 views

Rally App2.0 - Retrieve a specific story

I am getting the hang of 2.0, but a bit stuck on something that seems simple. Basically, I have created a new app for my team to use (thanks all for the help). I thought it would be cool to have a ...
2
votes
1answer
76 views

Is there an example of setting and retrieving settings from a Rally SDK 2 app?

What does a settings object look like? I can't seem to updateSettings with anything and get something back interesting. I'm printing out this.settings and every time I refresh, it just logs a ...
2
votes
1answer
337 views

How to Add an Attachment to a User Story using Rally REST .NET

We're in the process of porting our .NET Rally code from SOAP to the REST .NET API. So far so good, the REST API seems to be faster and is easier to use since there's no WSDL to break each time the ...
2
votes
2answers
1k views

Problems with jslint-v8 Ruby gem installation on Windows7 64-bit

There is a problem during Rally App SDK 2.0p environment setup on Windows 7 (64-bit). I have installed Ruby 1.8.7-p358 from rubyinstaller.org and managed to install rake Ruby gem. But I have problems ...
2
votes
2answers
50 views

Is there a way to refresh the list in an object dropdown using new query conditions ?

Using the object dropdown component I want to change the query and display a new list of items. Is that possible once the component has been created ? ...
2
votes
1answer
103 views

Remove html markup from Rally description field

Is there a quick way to remove html markup from a string ? The problem is I am copying the description from stories to the clipboard, we just want plain text but of course the value of description ...
2
votes
1answer
188 views

Rally App SDK: Is there a way to have variable columns for table?

Using the Rally App SDK, is there a way to create a table with a variable number of columns? For example, for a selected release, the columns are the iterations within that release date range, and the ...
2
votes
2answers
567 views

Rally Kanban - hiding Epic Stories

Is there a way to hide epic stories (i.e. stories with children) from Rally's kanban board app (presumably by customizing the kanban "catalog app" code to be a custom app)? I found the part of the ...
2
votes
1answer
597 views

Rally: Query Filtered to Specific Tags

I am writing a custom app for Rally and I would like to filter the data to stories with specific tags. So far I haven't found a way to write the correct syntax to achieve this purpose. Here's an ...
1
vote
1answer
49 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 ...
1
vote
1answer
302 views

Rally Python API

I am trying to get to my company's Rally subscription using the Python toolkit following the instructions at http://developer.rallydev.com/help/python-toolkit-rally-rest-api However, I am running ...
1
vote
1answer
408 views

Rally Custom Kanban

I would like to only show stories/defects from the current iteration on a kanban type board to help with our process. So I found this example out here on SO and added the QUERY line to filter out my ...
1
vote
1answer
179 views

time spent actuals

I would like to be able to copy the total "Time Spent" from a Task on the Time sheet to the Task "Actual" field. This way I can use the Time Sheet to enter the time I've spent on a task and see the ...
1
vote
1answer
463 views

Rally update Changeset data from Java using Java Toolkit for Rally REST API

I need to create a new Changeset entry for a story, given I have the formattedID and the objectID for the story. I am using the given Java Toolkit for Rally REST API ...
1
vote
1answer
132 views

How to query team member name and capacity in Rally developer depending upon iteration?

I have tried several things to query both the team member name and capacity in Rally developer depending upon iteration. One of the challenges I run into is that the team member name and capacity are ...
1
vote
1answer
223 views

How do I handle a value used in a query that has special characters?

I'm trying to query by iteration but our iteration names have special characters (e.g. "Sprint - 01 (Mar 26, 2012 to Apr 02, 2012)"). Cannot parse object reference from "Sprint - 01 (Mar 26, 2012 ...
1
vote
1answer
516 views

Query tasks by team members

Can I modify this query string to filter a search resulting with only tasks who's owners are team members of the current project? This is the query I have so far which is working besides the team ...
1
vote
1answer
87 views

App SDK: Erorr parsing input stream when running query

I'm using the App SDK to query all open defects within a specific project. I'm using findAll so I believe it should be returning all results but I'm only getting back 200. There's an error within the ...
0
votes
1answer
68 views

Extending UserStory model with a custom field fails with “compile function not found”

Following the discussion in Fetch a specific tag from Rally in order to compute a value in another field I have started rewriting a custom app to extend the Rally's UserStory model to add custom ...
0
votes
2answers
72 views

SDK 2: Example of a settings dialog

Do you have an example posted of a SDK 2 app that adds an entry to its "Gear" menu and allows the user to save settings to a preference object via a dialog window?
0
votes
1answer
113 views

Rally App SDK 2.0: rallymultiobjectpicker for users not showing displayField

I am attempting to create a rallymultiobjectpicker that lists the users of a workspace. However, it does not seem to load any values for the displayField, regardless of what it is set to in the ...
0
votes
1answer
380 views

Rally SOAP API - How do I add an attachment to a Hierarchical Requirement

I have followed this code to add attachment to a HierarchicalRequirement: Rally SOAP API - How do I add an attachment to a TestCaseResult. I get a "validation error: Attachment.attachments[0] should ...
0
votes
4answers
322 views

Rally SOAP API - How do I add an attachment to a TestCaseResult

I have figured out how to add an attachment to TestCase, Defect objects, but I can't, using the same mechanism, seem to attach a test result file to a TestCaseResult object. I am getting an error ...