I want to make a small chat application in Android. For this i done steps mentioned in this following page
http://davanum.wordpress.com/2007/12/31/android-just-use-smack-api-for-xmpp/
Its working fine if we enter gmail credentials like as :-
private final static String SERVER_HOST = "talk.google.com";
private final static int SERVER_PORT = 5222;
private final static String SERVICE_NAME = "gmail.com";
private final static String LOGIN = "myemail@gmail.com";
private final static String PASSWORD = "mypassword";
But i want to use my own server in place of gmail. I installed openfire in my system, and i am very fresher in openfire , please suggest me what entries should i do for above credential if i am using my own server.
If any query then please feel free to ask, i am always here.. Thank you in advance.