2013-10-22html
一個XMPP的帳號由三部分組成: 用戶名(user/node),域名(domain)和資源(resource) 。例如 alice@xmpp.irusher.com/mobile ,user部分(或node)是alice,domain是xmpp.irusher.com,resource部分是mobile。user和domain組合也叫Bare JID,例如:alice@xmpp.i8i8i8.com ,Bare JID經常使用標識一個用戶。包含了user,domain和resource的ID也叫Full JID,在Full JID中,resource通常用來區分一個用戶的多個會話,能夠由服務端或客戶端指定。下面介紹一下resource的綁定過程。node
客戶端經過服務端的驗證以後,應該給XMPP流綁定一個特殊的資源以使服務端可以正確的定位到客戶端。客戶端Bare JID後必須附帶resource,與服務端交互時使用Full JID,這樣就確保服務端和客戶端傳輸XML段時服務端可以正確的找到對應的客戶端。web
當一個客戶端經過一個資源綁定到XML流上後,它就被稱之爲"已鏈接的資源"。服務器應該容許同時處理多個」已鏈接的資源「,每一個」已鏈接的資源「由不一樣的XML流合不一樣的resource來區分。服務器
資源綁定用到的XML命名空間爲 "urn:ietf:params:xml:ns:xmpp-bind" .session
服務端在SASL協議成功,發送了響應的stream頭以後,必需緊接着發送一個由'urn:ietf:params:xml:ns:xmpp-bind'
標識的<bind/>
元素。dom
S:<stream:stream
from='im.example.com'
id='gPybzaOzBmaADgxKXu9UClbprp0='
to='juliet@im.example.com'
version='1.0'
xml:lang='en'
xmlns='jabber:client'
xmlns:stream='http://etherx.jabber.org/streams'>
S:<stream:features>
<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'/>
</stream:features>
一個資源標識至少在同一個Bare JID的全部resource標識中是惟一的,這一點須要由服務端來負責。this
客戶端經過發送一個包含空的<bind/>
元素,類型爲的set
的IQ
來請求服務端生成resource標誌。spa
C:<iq id='tn281v37' type='set'>
<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'/>
</iq>
服務端生成後發送響應給客戶端:code
S:<iq id='tn281v37' type='result'>
<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'>
<jid>
juliet@im.example.com/4db06f06-1ea4-11dc-aca3-000bcd821bfb
</jid>
</bind>
</iq>
失敗狀況:orm
客戶端也能夠本身設置resource。
客戶端經過發送一個包含<bind/>
元素,類型爲的set
的IQ
來請求服務端生成resource標誌。<bind/>
元素包含一個子元素<resource/>
。<resource/>
元素包含長度非零的字符串。
C:<iq id='wy2xa82b4' type='set'>
<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'>
<resource>balcony</resource>
</bind>
</iq>
服務端應該接受客戶端提交的resource標誌。服務端經過IQ
返回一個<bind/>
元素,其中包含了一個<jid>
元素,<jid>
元素中包含一個Full JID,其中的resource是客戶端提交的resource標誌。
S:<iq id='wy2xa82b4' type='result'>
<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'>
<jid>juliet@im.example.com/balcony</jid>
</bind>
</iq>
服務端有可能會拒絕客戶端提供的resource標誌,而使用服務端生成的resource標誌。
失敗狀況:
當客戶端提供的resource標誌衝突時,服務端應該遵循如下三個策略之一:
若是是第一種狀況,服務端返回從新生成的resource標誌:
S:<iq id='wy2xa82b4' type='result'>
<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'>
<jid>
juliet@im.example.com/balcony 4db06f06-1ea4-11dc-aca3-000bcd821bfb
</jid>
</bind>
</iq>
若是是第二種狀況,服務端向新鏈接返回一個<conflict/>
流錯誤:
S:<iq id='wy2xa82b4' type='error'>
<error type='modify'>
<conflict xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
若是是第三種狀況,服務端向已鏈接的客戶端發送<conflict/>
流錯誤,關閉已鏈接的客戶端的流,而後向新的鏈接發送綁定的結果:
S:<iq id='wy2xa82b4' type='result'>
<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'>
<jid>
juliet@im.example.com/balcony
</jid>
</bind>
</iq>
相似QQ,不一樣設備上最多隻能有一個帳戶在線,例如一個帳號不能在兩個iPhone上同時在線,在第二臺上登陸,就要把第一臺踢下線,可是,又容許桌面或web上登陸相同的帳號。像這樣的需求,能夠經過resource標誌來實現。
假定策略以下:一個帳號最多隻能在相同系統的設備上有一處登陸,例如,用戶在一臺iPhone上登陸,若是又在另一臺設備上登陸,那就把第一臺踢下線,可是能夠容許有一個Android設備登陸相同的帳號。
實現: 在iOS版本中,登陸時,客戶端提交自定義的resource標誌: iOS,一樣,Android版本中,提交自定義的resource標誌: Android。這樣就能夠限制相同系統只能有一處登陸了。
假如要求一個帳號只能在一個移動設備上登陸,實現的時候,則須要iOS和Android使用相同的resource標誌,例如: Mobile.
須要特別說明的是,當舊的鏈接被踢下線後,服務端向客戶端發送<conflict/>
流錯誤,並關閉流。客戶端須要正確的處理這種狀況下的應用邏輯。
在管理器的的 服務器>服務器管理器>系統屬性 中設置屬性xmpp.session.conflict-limit
的值。
Openfire相關的源碼以下,能夠根據須要配置對應的屬性值:
String username = authToken.getUsername().toLowerCase();
// If a session already exists with the requested JID, then check to see
// if we should kick it off or refuse the new connection
ClientSession oldSession = routingTable.getClientRoute(new JID(username, serverName, resource,true));
if(oldSession !=null){
try{
int conflictLimit = sessionManager.getConflictKickLimit();
if(conflictLimit ==SessionManager.NEVER_KICK){
reply.setChildElement(packet.getChildElement().createCopy());
reply.setError(PacketError.Condition.conflict);
// Send the error directly since a route does not exist at this point.
session.process(reply);
returnnull;
}
int conflictCount = oldSession.incrementConflictCount();
if(conflictCount > conflictLimit){
// Kick out the old connection that is conflicting with the new one
StreamError error =newStreamError(StreamError.Condition.conflict);
oldSession.deliverRawText(error.toXML());
oldSession.close();
}
else{
reply.setChildElement(packet.getChildElement().createCopy());
reply.setError(PacketError.Condition.conflict);
// Send the error directly since a route does not exist at this point.
session.process(reply);
returnnull;
}
}
catch(Exception e){
Log.error("Error during login", e);
}
}
ps: 修改完須要重啓openfire。
設置XMPPStream
類的實例變量myJID
,附帶自定義的resource便可。
XMPPJID *myJID =[XMPPJID jidWithString:[NSString stringWithFormat:@"%@@%@/%@",user,XMPP_SERVER_ACCOUNT_HOSTNAME,@"xmpp"]];
[self.xmppStream setMyJID:myJID];
在XMPPStreamDelegate
的回調方法中處理資源綁定衝突產生的流錯誤:
-(void)xmppStream:(XMPPStream*)sender didReceiveError:(id)error
{
NSXMLElement*element =(NSXMLElement*) error;
NSString*elementName =[element name];
//<stream:error xmlns:stream="http://etherx.jabber.org/streams">
// <conflict xmlns="urn:ietf:params:xml:ns:xmpp-streams"/>
//</stream:error>
if([elementName isEqualToString:@"stream:error"]||[elementName isEqualToString:@"error"])
{
NSXMLElement*conflict =[element elementForName:@"conflict" xmlns:@"urn:ietf:params:xml:ns:xmpp-streams"];
if(conflict)
{
}
}
}