From 5ab6d22c9dcf76182718dc3f16ee99a16bd6b2c7 Mon Sep 17 00:00:00 2001 From: Gaston Dombiak Date: Fri, 16 Sep 2005 15:52:45 +0000 Subject: [PATCH] Forgot to replace refactored code in non-anonymous sasl....arggg... SMACK-85 git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2827 b35dd754-fafc-0310-a699-88a17e54d16e --- .../smack/SASLAuthentication.java | 53 +------------------ 1 file changed, 2 insertions(+), 51 deletions(-) diff --git a/source/org/jivesoftware/smack/SASLAuthentication.java b/source/org/jivesoftware/smack/SASLAuthentication.java index a3e9e65ac..1ff36aca9 100644 --- a/source/org/jivesoftware/smack/SASLAuthentication.java +++ b/source/org/jivesoftware/smack/SASLAuthentication.java @@ -206,57 +206,8 @@ public class SASLAuthentication implements UserAuthentication { } if (saslNegotiated) { - // We now need to bind a resource for the connection - // Open a new stream and wait for the response - connection.packetWriter.openStream(); - - // Wait until server sends response containing the element - synchronized (this) { - try { - wait(30000); - } catch (InterruptedException e) { - } - } - - Bind bindResource = new Bind(); - bindResource.setResource(resource); - - PacketCollector collector = connection - .createPacketCollector(new PacketIDFilter(bindResource.getPacketID())); - // Send the packet - connection.sendPacket(bindResource); - // Wait up to a certain number of seconds for a response from the server. - Bind response = (Bind)collector.nextResult( - SmackConfiguration.getPacketReplyTimeout()); - collector.cancel(); - if (response == null) { - throw new XMPPException("No response from the server."); - } - // If the server replied with an error, throw an exception. - else if (response.getType() == IQ.Type.ERROR) { - throw new XMPPException(response.getError()); - } - String userJID = response.getJid(); - - if (sessionSupported) { - Session session = new Session(); - collector = connection - .createPacketCollector(new PacketIDFilter(session.getPacketID())); - // Send the packet - connection.sendPacket(session); - // Wait up to a certain number of seconds for a response from the server. - IQ ack = (IQ) collector - .nextResult(SmackConfiguration.getPacketReplyTimeout()); - collector.cancel(); - if (ack == null) { - throw new XMPPException("No response from the server."); - } - // If the server replied with an error, throw an exception. - else if (ack.getType() == IQ.Type.ERROR) { - throw new XMPPException(ack.getError()); - } - } - return userJID; + // Bind a resource for this connection and + return bindResourceAndEstablishSession(resource); } else { // SASL authentication failed so try a Non-SASL authentication return new NonSASLAuthentication(connection)