On April 27, 2024, our Sign-in and Create Account options will be unavailable from 9am-12pm ET. During this maintenance window, developer account access and free trial registration will be unavailable.

Social XAPI call not returning any response

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