我已将answer_url添加到具有唯一ID的会议XML中。但是,我对makecall API的第二次调用收到了IllegalState异常。我不确定自己在做什么错?

码:

LinkedHashMap<String, String> params = new LinkedHashMap<String, String>();
params.put("from", "ZZZZZZZZZZZ");
params.put("answer_url",
        "https://dl.dropboxusercontent.com/s/cho3u1633pz43lx/conference.xml");
params.put("callback_method", "GET");

Call response;

String[] conference_numbers = { moderator, participant1 };

try {

    for (int i = 0; i < conference_numbers.length; i++) {
        params.put("to", conference_numbers[i]);
        System.out.println("Number at index " + i + " "
                + conference_numbers[i]);
        response = restAPI.makeCall(params);
        System.out.println(response.apiId);
    }

} catch (PlivoException e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
}


安慰:

======= CONSOLE =========================
Moderator Number 1 : XXXXX
Participants Number 1 : YYYYYY
Database connection terminated...!!!
Number at index 0 XXXXX
5304db62-cfa6-11e3-9c37-22000ac7849b
Number at index 1 YYYYYY
Connection manager has been shut down
com.plivo.helper.exception.PlivoException: Connection manager has been shut down
    at com.plivo.helper.api.client.RestAPI.request(RestAPI.java:127)
    at com.plivo.helper.api.client.RestAPI.makeCall(RestAPI.java:238)
    at PlivoConference.main(PlivoConference.java:136)

最佳答案

调用restAPI.makeCall将关闭连接管理器,并且restAPI实例变得不可用。要解决您的错误,请在每次调用前创建RestAPI的全新实例。

10-04 19:49