http://psi-im.org/download/
Microsoft Windows
17.4 MB installer
Requires Windows 98 or newer (voice feature requires Windows 2000 or newer and DirectX 8 or newer)
Also available as a zip archive only
Mac OS X
27.4 MB disk image
Universal binary for Intel and PowerPC
Requires OS X 10.3 or newer
Source Code (.tar.gz)
2.2 MB archive
Requires Qt 4.4.0+ and QCA 2.0+
Я совсем уже отстал от жизни, или мне кажется, что про флэш и экшен скрипт там ни слова?

Собссно проблема в том, что я не могу авторизоваться и добиться от сервера хоть какого-то ответа.
Соединение устанавливается, и все.

Код AS1/AS2:
var socketName = "vkmessenger.com"
System.security.loadPolicyFile("xmlsocket://"+socketName+":5222")
var socket:XMLSocket = new XMLSocket()
socket.onConnect = function( stat:Boolean ):Void
{
if (stat)
{
var xml_doc:String = "<stream:stream to='vkmessenger.com' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0' xml:lang='en'>"
var xml_data:XML = new XML(xml_doc)
socket.send(xml_data)
}
}
socket.onData = function ( rez:String ):Void
{
// Реакция - нулевая
}