SOAP API
We highly recommend to use REST API instead of SOAP API. We are not going to improve SOAP API in the future.
TargetProcess SOAP web services conform with WSI Basic Profile version 1.1 and use WS-Security specification for authenticating the client using a UsernameToken security token.
BugServiceWse bugService = new BugServiceWse(); TpPolicy.ApplyAutheticationTicket(bugService, "admin", "admin"); BugDTO bug = bugService.GetByID(97); Console.WriteLine(bug.Name);



