Forum Discussion
francois_roux
11 years agoOccasional Contributor
Same issue here.
See this link though - gives the Java version-
http://codereviewer.org/forums/f21/fp3/t622/code-collaborator-soap-api-to-check-for-a-revie.html?utm_source=site-search&utm_medium=search-results&utm_campaign=site-search-c&utm_term=c%23+collaborator
But I would like to get mine in c# as well. Seems like you need to update the credentials using your username and the obtained ticket as password, but doesn't work for me.
collab.CollabSoap7001Service _collab = new collab.CollabSoap7001Service();
string version = _collab.getProductVersion();
string _username = "blahblah";
string _password = string.Empty;
string _ticket = _collab.getLoginTicket(_username, _password);
_collab = new ukvms_collab.CollabSoap7001Service();
_collab.Credentials = new NetworkCredential(_username, _ticket);
var items = _collab.getActionItems();
foreach (actionItem ai in items)
{
string s = ai.text;
}
so if someone has gotten this to work, would be good
See this link though - gives the Java version-
http://codereviewer.org/forums/f21/fp3/t622/code-collaborator-soap-api-to-check-for-a-revie.html?utm_source=site-search&utm_medium=search-results&utm_campaign=site-search-c&utm_term=c%23+collaborator
But I would like to get mine in c# as well. Seems like you need to update the credentials using your username and the obtained ticket as password, but doesn't work for me.
collab.CollabSoap7001Service _collab = new collab.CollabSoap7001Service();
string version = _collab.getProductVersion();
string _username = "blahblah";
string _password = string.Empty;
string _ticket = _collab.getLoginTicket(_username, _password);
_collab = new ukvms_collab.CollabSoap7001Service();
_collab.Credentials = new NetworkCredential(_username, _ticket);
var items = _collab.getActionItems();
foreach (actionItem ai in items)
{
string s = ai.text;
}
so if someone has gotten this to work, would be good
Related Content
- 14 years agoAnonymous
Recent Discussions
- 3 months ago