Go to file
Florian Schmaus 1e57f1c659 Activate checkstyle and add missing license headers
Delete also all "All rights reserved" statements, as they are
unnecessary and conflict with checkstyle's header check. Delete unused
imports.
2014-02-17 20:09:55 +01:00
compression-jzlib/src/main/java/org/jivesoftware/smack/compression Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
config Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
core Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
debug/src/main Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
documentation Fix copy&paste error in intro.html 2014-02-15 22:36:52 +01:00
experimental/src Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
extensions/src Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
integration-test Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
jingle Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
legacy/src Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/dns Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
resolver-javax/src/main/java/org/jivesoftware/smack/util/dns Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
resources Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
sample Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
.gitignore Migrate from Ant to Gradle (SMACK-265) 2014-02-14 18:46:33 +01:00
README.md Add resource URLs to README.md 2014-02-16 15:22:47 +01:00
build.gradle Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
settings.gradle Create new subproject 'legacy', move workgroup API into it 2014-02-17 08:24:10 +01:00

README.md

Smack

Smack is an Open Source, cross-platform, easy to use Java XMPP client library.

Communicate with XMPP servers to perform real-time collaboration, including instant messaging and group chat.

Key Advantages :

  • Extremely simple to use, yet powerful API. Sending a text message to a user can be accomplished in only a few lines of code:

    Connection connection = new XMPPConnection("jabber.org");
    connection.connect();
    connection.login("mtucker", "password");
    Chat chat = connection.getChatManager()
        .createChat("jsmith@jivesoftware.com", new MessageListener() {
    
        public void processMessage(Chat chat, Message message) {
            System.out.println("Received message: " + message);
        }
    });
    chat.sendMessage("Howdy!");
    
  • Doesn't force you to code at the packet level, as other libraries do. Smack provides intelligent higher level constructs such as the Chat and Roster classes, which let you program more efficiently.

  • Does not require that you're familiar with the XMPP XML format, or even that you're familiar with XML.

  • Provides easy machine to machine communication. Smack lets you set any number of properties on each message, including properties that are Java objects.

  • Open Source under the Apache License, which means you can incorporate Smack into your commercial or non-commercial applications.

Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java library, it can be embedded into your applications to create anything from a full XMPP client to simple XMPP integrations such as sending notification messages and presence-enabling devices.

Smack - an Ignite Realtime community project.

Resources

Ignite Realtime

Ignite Realtime is an Open Source community composed of end-users and developers around the world who are interested in applying innovative, open-standards-based Real Time Collaboration to their businesses and organizations. We're aimed at disrupting proprietary, non-open standards-based systems and invite you to participate in what's already one of the biggest and most active Open Source communities.