Hi together,
following enviroment:
CTX Server Version 1.3 with AMM License applied
Apache Webserver running the WebApplication
When calling the API function "getCurrentMeetingStatus" - which requires the unique MeetingKey - and using the "meetingKey" attribute from the "getActiveMeetings" function results, I get the following Error from the soapCall: " Meeting is either invalid or inactive."
I don't get where the error is. GetActiveMeetings returns the following information:
- bridgeResourceName: "TPS-8710-02",
- bridgeResourceType: "TPS",
- endTime: "2014-09-10T10:15:00+02:00",
- isLocked: false,
- meetingId: "XXXXXXXX",
- meetingInstanceId: 0,
- meetingType: "MEETME",
- scheduler: "max.mustermann@mustermail.de",
- startTime: "2014-09-10T08:30:00+02:00",
- subject: "TPMeeting",
- meetingKey: "8a8a8985455099870146f155590f1155",
- numberOfParticipants: 3
For my understanding the "meetingKey" can be used for the "getCurrentMeetingStatus" function.
I hope you can understand my problem and help me.
Kind Regards,
Jannik
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Okay i solved the problem by myself.
Following problem:
My original code was:
$cdrApiClient->getCurrentMeetingStatus($meetingKey);
But the function need an parameters array where the parameters are named.
so my solution looks like this:
$SoapCallParameters = array('meetingKey' => $meetingKey);
$result = $cdrApiClient->__soapCall(
"getCurrentMeetingStatus",
array('parameters' => $SoapCallParameters));
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Comments
0 comments
Please sign in to leave a comment.