When you connect to prosody 0.10, you cannot use ``` $client = new JAXL(array( 'jid' => 'username@server.com', 'pass' => 'my_password', )); ``` You need to change it to this format: ``` $client = new JAXL(array( 'jid' => 'username', 'host' => 'server.com', 'pass' => 'my_password', )); ``` the examples in the documentation should be updated accordingly.