12

I have changed my app to use Smack 4.2 replacing Smack 4.1

But I'm getting an error in the config.setServiceName();

The parameter to this method has been changed from String to DomainBareJid. I don't know how to use DomainBareJid and setServiceName in this new Smack.

XMPPTCPConnectionConfiguration.Builder config = XMPPTCPConnectionConfiguration
                .builder();
        config.setSecurityMode(ConnectionConfiguration.SecurityMode.disabled);


        config.setServiceName("What should i put here?");


        config.setHost(serverAddress);
        config.setPort(5222);
        config.setDebuggerEnabled(true);
        connection = new XMPPTCPConnection(config.build());

        connection.setUseStreamManagement(true);

And if I dont set the Service name, then I get the following error:

03-28 13:44:29.834: E/AndroidRuntime(7104): FATAL EXCEPTION: main
03-28 13:44:29.834: E/AndroidRuntime(7104): java.lang.RuntimeException: Unable to create service com.marothiatechs.cpm.MyService: java.lang.IllegalArgumentException: Must provide XMPP service name
03-28 13:44:29.834: E/AndroidRuntime(7104):     at android.app.ActivityThread.handleCreateService(ActivityThread.java:2715)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at android.app.ActivityThread.access$1600(ActivityThread.java:153)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1351)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at android.os.Handler.dispatchMessage(Handler.java:99)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at android.os.Looper.loop(Looper.java:137)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at android.app.ActivityThread.main(ActivityThread.java:5289)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at java.lang.reflect.Method.invokeNative(Native Method)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at java.lang.reflect.Method.invoke(Method.java:525)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:739)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:555)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at dalvik.system.NativeStart.main(Native Method)
03-28 13:44:29.834: E/AndroidRuntime(7104): Caused by: java.lang.IllegalArgumentException: Must provide XMPP service name
03-28 13:44:29.834: E/AndroidRuntime(7104):     at org.jivesoftware.smack.ConnectionConfiguration.<init>(ConnectionConfiguration.java:106)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at org.jivesoftware.smack.tcp.XMPPTCPConnectionConfiguration.<init>(XMPPTCPConnectionConfiguration.java:52)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at org.jivesoftware.smack.tcp.XMPPTCPConnectionConfiguration.<init>(XMPPTCPConnectionConfiguration.java:36)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at org.jivesoftware.smack.tcp.XMPPTCPConnectionConfiguration$Builder.build(XMPPTCPConnectionConfiguration.java:126)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at com.marothiatechs.cpm.MyXMPP.initialiseConnection(MyXMPP.java:134)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at com.marothiatechs.cpm.MyXMPP.init(MyXMPP.java:119)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at com.marothiatechs.cpm.MyXMPP.<init>(MyXMPP.java:84)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at com.marothiatechs.cpm.MyXMPP.getInstance(MyXMPP.java:93)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at com.marothiatechs.cpm.MyService.onCreate(MyService.java:74)
03-28 13:44:29.834: E/AndroidRuntime(7104):     at android.app.ActivityThread.handleCreateService(ActivityThread.java:2705)

Please help by providing some sample code to set the serviceName.

Laxman Marothiya
  • 383
  • 3
  • 13
  • I have finally used a released version of Smack 4.1 and posted the complete implementation here : http://marothiatechs.blogspot.in/2015/08/building-your-own-android-chat_18.html – Laxman Marothiya Aug 19 '15 at 05:04

5 Answers5

22
DomainBareJid serviceName = JidCreate.domainBareFrom("example.org");
config.setServiceName(serviceName);
Flow
  • 23,572
  • 15
  • 99
  • 156
Ninogumy
  • 236
  • 2
  • 2
  • 5
    Thanks... `setServiceName( DomainBareJid serviceName)` now deprecated... use `setXmppDomain(DomainBareJid xmppServiceDomain)` instead. It's hard to keep up sometimes! – mike rodent Oct 01 '16 at 16:33
  • Thanks Ninogumy. This was very helpful! :) – Mike Oct 23 '17 at 11:57
2

Service name should be your served host names. eg:

config.setServiceName("gtalk.com");
Zaw Myo Htet
  • 540
  • 2
  • 7
  • 23
2

Here is how to do it using Smack 4.4

   XMPPTCPConnectionConfiguration conf = XMPPTCPConnectionConfiguration.builder()
            .setHostAddress(InetAddress.getByName(host))
            .setXmppDomain(JidCreate.domainBareFrom(Domain))
            .setUsernameAndPassword("username", "password")
            .setPort(5222)
            .setSecurityMode(ConnectionConfiguration.SecurityMode.disabled)
            .build();
    AbstractXMPPConnection connection = new XMPPTCPConnection(conf);
    connection.connect();
    connection.login();
1
        DomainBareJid serviceName = null;
        try
        {
            serviceName = JidCreate.domainBareFrom("yourdomain.com");
        }
        catch (XmppStringprepException e)
        {
            e.printStackTrace();
        }

XMPPTCPConnectionConfiguration config = XMPPTCPConnectionConfiguration.builder()
                .setUsernameAndPassword("1234567890@test", "123")
                .setHost("yourhostname.com")
                .setSecurityMode(ConnectionConfiguration.SecurityMode.disabled)
                //.setSendPresence(true)
                .setXmppDomain(serviceName)
                .setPort(5222)
                .setDebuggerEnabled(true) // to view what's happening in detail
                .build();

        conn = new XMPPTCPConnection(config);

I have tested this and works fine.

Alp Altunel
  • 3,324
  • 1
  • 26
  • 27
-1

this is my code to connecting , it worked perfectly .

    DomainBareJid domainBareJid = JidCreate.domainBareFrom(mServiceName) ;
    XMPPTCPConnectionConfiguration.Builder builder=
            XMPPTCPConnectionConfiguration.builder();
    builder.setServiceName(domainBareJid);
    builder.setHostAddress(InetAddress.getByName(mServiceName));
    builder.setUsernameAndPassword(mUsername, mPassword);
     builder.setResource("resource");
    builder.setSecurityMode(ConnectionConfiguration.SecurityMode.disabled);

    mConnection = new XMPPTCPConnection(builder.build());
    mConnection.addConnectionListener(this);
    mConnection.connect();
    mConnection.login();
Hosein Kord
  • 187
  • 2
  • 15