Tagged Questions
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: ...
2
votes
1answer
83 views
RallyRestApi Cannot parse object reference from hierarchicalrequirement
I'm using the Rally.RestApi.dll to create a set of task against a user story (US). The US already exists within rally so I want to create a set of template tasks against this.
Using the following ...
1
vote
1answer
129 views
Rally .NET Rest API - Request pagesize vs limit?
Pulling back user stories from the Rally web service v1.39 (using the .NET Rest API) - I thought that setting the pagesize value would actually limit the number of records in the results collection. ...
0
votes
1answer
135 views
Rally .NET REST API with windows (desktop) application, reference issue
I am trying to use the Rally REST API in my windows (desktop) application. I have added a reference and it allowed me to use functions. But, I am having an issue when I compile it, it says there is ...
2
votes
2answers
194 views
Rally SOAP API - Missing class RallyServiceService after importing into a .net project
I'm using a Rally trial account to do an integration proof-of-concept, so I can estimate how much would it cost to integrate our systems with Rally.
I am trying to use the Rally SOAP API with .net, ...
1
vote
1answer
160 views
Rally API - Create TestCaseResult - DateTime issue
i'm using the Rally soap API to create a new TestCaseResult against a test case that has been previously created. But I get an error when I create the result - 'Validation error: TestCaseResult.Date ...
2
votes
1answer
347 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 ...
1
vote
1answer
145 views
Using REST API to create a Rally user in .NET
I want to create a new Rally user with the following C# code
DynamicJsonObject newUser = new DynamicJsonObject();
newUser["FirstName"] = "Joe";
newUser["LastName"] = "Developer";
newUser["UserName"] ...
1
vote
1answer
113 views
Sync Rally with another bug tracking solution
I'm looking for a solution to sync (in both directions) between our Rally subscription and another bug tracking system (FIT http://www.fittrackingsolutions.com/ in particularly)
At first, I thought ...
1
vote
1answer
267 views
Rally API: How to update a story with new defects
I am new to using the Rally API for .NET and I would be very appreciative for any help. I have obtained the story object but I am not sure how to update it with a new defect. I can create new defects ...
0
votes
1answer
279 views
Slow performance on Rally Rest api request and response
While using Rally Rest.net api to query the data from Rally, the request/response is quite slow. Note that i ignored the factor of client connection speed.
Tried further investigation by Fiddler, i ...
3
votes
1answer
182 views
Rally Rest .NET API throws KeyNotFoundException when posting a new defect without required field value
I've tried to post a new defect to Rally via Rest .net api by the following code:
var api = new RallyRestApi("<myusername>", "<mypassword>", "https://community.rallydev.com");
var defect ...
2
votes
1answer
216 views
How to set custom WebLink field value when submit a defect by Rally rest .net api?
I've configured a custom weblink field for defect in Rally. And i would like to use Rally rest .net api to submit new defect with value of custom weblink field accordingly to Rally.
Unluckily that ...
0
votes
1answer
396 views
Failed when query users in workspace via Rally Rest .net api
I met KeyNotFound exception when i've tried to query the user list in rally rest .net api. The example code is following:
Request query = new Request("User");
query.Workspace = workspaceRef;
var ...
3
votes
1answer
553 views
How to Update a Task (change User Story) using Rally API?
So I am trying to update a Task and change the User Story it belongs to. This is what i am trying..
var toUpdate = new DynamicJsonObject();
// the new User Story
toUpdate["WorkProduct"] = ...
