Hi,
I have a code to make the XAPI call, Collab log registers an XAPI call but I don’t see the result and the call does not get registered within Fiddler. Any ideas?
Here is the piece of code:
CommunityDataServiceIf service = CommunityHelper.createService(username, realmID, domainID, domainID);
ManageSiteMembershipAction mAction = new ManageSiteMembershipAction();
SimpleActionData actionData = new SimpleActionData();
actionData.addParam("domain", domainID);
actionData.addParam("site", siteName);
actionData.addParam("type", "UserProfile");
actionData.addParam("name", username);
actionData.addParam("object", (String)request.getAttribute("profileOID"));
actionData.addParam("join", "join");
Response responseObject = service.getClientService().post(actionData.getParams(), "ManageSiteMembership");
Regards,
Mukul