我可以添加组,但显示“房间被锁定,无法进入,直到确认配置”。我进行了研究,但没有找到满意的答案。下面是代码如何获取XMPP连接并提交表单的代码。并且在发送表格时会抛出“未授权的异常”。

xmppConnection = connectionThread.getXMPPConnection();
    if (xmppConnection == null) {
        Application.getInstance().onError(R.string.NOT_CONNECTED);
        return;
    }
    final MultiUserChat multiUserChat;
    try {

        multiUserChat = new MultiUserChat(xmppConnection, room);
    //  setConfig(multiUserChat);

    } catch (IllegalStateException e) {
        Application.getInstance().onError(R.string.NOT_CONNECTED);
        return;
    }

//提交表单的代码。
private void setConfig(MultiUserChat multiUserChat) {

    try {
        Form form = multiUserChat.getConfigurationForm();
        Form submitForm = form.createAnswerForm();
        for (Iterator<FormField> fields = submitForm.getFields(); fields
                .hasNext();) {
            FormField field = (FormField) fields.next();
            if (!FormField.TYPE_HIDDEN.equals(field.getType())
                    && field.getVariable() != null) {
                submitForm.setDefaultAnswer(field.getVariable());
            }
        }
        submitForm.setAnswer("muc#roomconfig_publicroom", true);
        submitForm.setAnswer("muc#roomconfig_persistentroom", true);
        multiUserChat.sendConfigurationForm(submitForm);
    } catch (Exception e) {
        e.printStackTrace();
    }

}

最佳答案

为了使该问题得到解答,我只对您的评论进行调整。

您正在提早调用setConfig()。加入小组后应调用它。

07-25 21:06