Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Setting vote counts using web services SDK

api

I have successfully used the SDK samples to create issues.   Now we would like to build a process to increase Vote count for issues through a programmatic process.

It seemed like is should be simple enough.  Here is the code code of the process:

.....
IssueEn issue;
issue = ServiceManager.IssueServices.GetIssue(ProjId, IssId);
issue.Votes = issue.Votes + 1;
ServiceManager.IssueServices.UpdateIssue(issue);
.....

This looks like it works, but the Votes update is not persisted back to the database.   Is there another step that is required to save the value? 

I have also tried .GetFullIssueDetails with .UpdateFullIssue  and had the same results.

Thanks in advance.

acasey
· 1
acasey
Replies (1)
helpful
0
not helpful

Unfortunately, it is not possible to add issue votes via Gemini web services.

Feel free to add it to our list: http://gemini.countersoft.com

 


Mark Wing
· 9108
Mark Wing