Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Rally.RestApi/RallyRestApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,7 @@ public DynamicJsonObject Post(String relativeUri, DynamicJsonObject data)
throw new InvalidOperationException("You must authenticate against Rally prior to performing any data operations.");

Uri uri = new Uri(String.Format("{0}slm/webservice/{1}/{2}", httpService.Server.AbsoluteUri, WsapiVersion, relativeUri));
string postData = serializer.Serialize(data);
return serializer.Deserialize(httpService.Post(uri, postData, GetProcessedHeaders()));
return DoPost(uri, data, true);
}
#endregion

Expand Down