If you're connecting over ssl, SASL is not required, you can get away with:
send: <iq type="get" id="auth_1" to="gmail.com" > <query xmlns="jabber:iq:auth"> <username>name</username> </query> </iq> waitfor: <iq from="gmail.com" type="result" id="auth_1" > <query xmlns="jabber:iq:auth"> <username/> <resource/> <password/> </query> </iq> send: <iq type="set" id="auth_2" to="gmail.com" > <query xmlns="jabber:iq:auth"> <username>name</username> <password>pass</password> <resource>myclient</resource> </query> </iq> On 12/10/05, Matthew Terenzio <[EMAIL PROTECTED]> wrote: > I'm working on a Google Talk connection but I'n not very familiar with > SASL. > > If I connect to the Google server over SSL, are there additional steps > to take or can I just send something like : > > <iq type="set" id="auth_2" to="gmail.com" > > <query xmlns="jabber:iq:auth"> > <username>name</username> > <password>pass</password> > <resource>myclient</resource> > </query> > </iq> > > over. > > > -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/
