我正在尝试使用Mongoseim Server在iOS应用程序中实现muc light。对于群聊我使用muclight但是当我通过以下方式发现我的服务时:
let toStr: String = XMPPConstants.ConnectionHost // my xmpp connection host
let query = XMLElement(name: "query", xmlns: "http://jabber.org/protocol/disco#item")
let iq = XMPPIQ(type: "get", to: XMPPJID(string: toStr), elementID: xmppStream.generateUUID(), child: query)
iq?.addAttribute(withName: "from", stringValue: xmppStream.myJID.bare())
xmppStream.send(iq)
我收到错误消息,如:
<error type='cancel'>
<service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
请帮我解决此错误。 我是否需要配置服务器部件或其他内容?
请详细解释。
提前致谢:)
答案 0 :(得分:0)
您需要为mucLight配置ejabberd.cfg
文件。文件可以找到[MongooseIM root]/rel/mongooseim/etc/
{mod_muc_light, [
{backend, odbc},
{host, "muclight.@HOST@"},
{rooms_per_user,infinity},
{max_occupants,infinity},
{rooms_per_page,infinity},
{all_can_configure,true},{all_can_invite, true}]},
有关详细信息,请点击此链接mod_muc_light