2
어떤 시점에서 사용자가 자신의 회의실을 만들 수 있도록 허용해야하는 시스템을 개발 중입니다.XMPPHP를 사용하여 Openfire에서 회의실을 만드는 방법은 무엇입니까?
약 create rooms에 대해 읽었으며 XMPP로 일부 코드를 작성하여 자세한 로그를 생성했습니다.
1422017436 [DEBUG]: Calling presence_handler
1422017436 [DEBUG]: Presence: [email protected]/xmpphp [available]
1422017436 [DEBUG]: EVENT: presence
1422017436 [VERBOSE]: RECV: <iq type="result" id="create1" from="[email protected]/xmpphp" to="[email protected]/xmpphp"/>
1422017436 [VERBOSE]: RECV: </stream:stream>
를하지만의 Openfire 패널에서 sala3
방을 찾을 수 없습니다 : 여기 읽을 수
1422017436 [VERBOSE]: Socket is ready; send it.
1422017436 [VERBOSE]: SENT: <presence from='[email protected]/xmpphp' to='[email protected]/xmpphp'><x xmlns='http://jabber.org/protocol/muc'/></presence>
1422017436 [VERBOSE]: Successfully sent 134 bytes.
1422017436 [VERBOSE]: Socket is ready; send it.
1422017436 [VERBOSE]: SENT: <iq from='[email protected]/xmpphp' id='create1' to='[email protected]/xmpphp' type='set'><query xmlns='http://jabber.org/protocol/muc#owner'><x xmlns='jabber:x:data' type='submit'/></query></iq>
1422017436 [VERBOSE]: Successfully sent 203 bytes.
1422017436 [VERBOSE]: Disconnecting...
1422017436 [VERBOSE]: Socket is ready; send it.
1422017436 [VERBOSE]: SENT: </stream:stream>
1422017436 [VERBOSE]: Successfully sent 16 bytes.
1422017436 [VERBOSE]: RECV: <presence from="[email protected]/xmpphp" to="[email protected]/xmpphp"><x xmlns="http://jabber.org/protocol/muc#user"><item jid="[email protected]/xmpphp" affiliation="owner" role="moderator"/><status code="110"/><status code="100"/><status code="201"/></x></presence>
1422017436 [DEBUG]: Calling presence_handler
1422017436 [DEBUG]: Presence: [email protected]/xmpphp [available]
1422017436 [DEBUG]: EVENT: presence
1422017436 [VERBOSE]: RECV: <iq type="result" id="create1" from="[email protected]/xmpphp" to="[email protected]/xmpphp"/>
1422017436 [VERBOSE]: RECV: </stream:stream>
1422017436 [DEBUG]: EVENT: end_stream
그것은, 작동하는 것 같군. 내 SENT
패킷에 문제가 있습니까?
감사합니다.