Quantcast
Channel: Ignite Realtime : Discussion List - All Communities
Viewing all articles
Browse latest Browse all 10742

error: cannot access SaslException class file for javax.security.sasl.SaslException not found

$
0
0

I want to use the latest release of smack 4.0.0 in my project for xmpp with android studio 0.6.0,the code as below:

 

  try{
       
ConnectionConfiguration config =newConnectionConfiguration("wooxonline.com",4000);
       
XMPPConnection connection =newXMPPTCPConnection(config);
        connection
.connect();
        connection
.login("cliff","cliff123");
   
}
   
catch(SmackException e){
        e
.printStackTrace();
   
}
   
catch(java.io.IOException e)
   
{
        e
.printStackTrace();
   
}
   
catch(XMPPException e){
        e
.printStackTrace();
       
Log.i(TAG,"login failed!");
   
}

this almost like sample with the smack sample code,but I have a compile issue that can't be solved as below trace info:


Error: (58,29) error: cannot access SaslException
class file for javax.security.sasl.SaslException not found

 

I'm stuck here and anyone can help to have a look?


Viewing all articles
Browse latest Browse all 10742

Trending Articles