Search:

Type: Posts; User: JavaPF

Search: Search took 0.12 seconds.

  1. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Do you have a server? You can't just run the code I posted without configuring it.
  2. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Please start a new thread regarding this issue. The best forum to post in is here - Java Networking

    Have you tried getting the example code to work by itself?
  3. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Hello.

    I am unsure what you mean? Can you please start a new thread regarding this issue.

    Thanks.
  4. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Could you also please start a new thread and post all of your code? Thank you.
  5. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Could you please start a new thread and post all of your code? It will really help us diagnose your problem.

    Thank you.
  6. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    ConnectionConfiguration config = new ConnectionConfiguration("jabber.org",5222,"localho st");


    Should be



    ConnectionConfiguration config = new...
  7. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    I don't think Jabber.org is your jabber server. You need to have a server installed somewhere and link to it that way..

    For example, Ignite Realtime: Openfire Server
  8. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    ConnectionConfiguration config = new ConnectionConfiguration("im.server.here", 5222, "Work");


    Make sure im.server.here is set to your Jabber Server address. You may also need to replace Work...
  9. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Try putting the server location where it says Work in the code.
  10. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Did you use the above code example exactly? If not, please post your version.

    It must be down to the XMPP configuration #-o
  11. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Hello osmankamil.

    To be honest, I am not all that familiar with XMPP. We use Pidgin here at work but I am not responsible for creating or managing accounts. I started messing around with the Java...
  12. Re: How to Write a simple XMPP (Jabber) client using the Smack API

    Hello osmankamil, welcome to the forums.

    Sorry, that error was my fault.



    JabberSmack c = new JabberSmack();


    Should be:
  13. How to Write a simple XMPP (Jabber) client using the Smack API

    About XMPP

    The Extensible Messaging and Presence Protocol (XMPP) is an open technology for real-time communication, which powers a wide range of applications including instant messaging, presence,...
Results 1 to 13 of 13