I have to communicate with OpenText LiveLink via its WCF interface.
I am using the GetNode function to which I pass a node ID and it returns information about the document.
One of the field returned is "CreatedBy": 797207
I would require to get a user name instead of an ID...How is that feasible?
You can use the
getMemberByIDmethod ofMemberServiceWS interface, whose XML request is the following:In general MemberService (available at http://your-OTCS-server/cws/MemberService.svc) provides you a lot of other user-related functions:
You can easily import the WSDL into, say, applications like SoapUI and perform all the testing you may need.