public void connect(String host, int port,Handlers handlers) throws IOException
{
if(port==5222)port=5223;
JabberHandler jH = new JabberHandler(this,handlers);
//Socket socket = new Socket(host,port);
Socket socket = new DummySSLSocketFactory().createSocket(host,port);
new Input(socket.getInputStream(),this,jH);
output = new Output(socket,host,this,socket.getOutputStream());
server = host;
}