Tagged Questions
Smack is an XMPP (Jabber) client library written in Java. It provides a simple API to allow Java developers to write clients which access XMPP servers.
11
votes
2answers
3k views
NAT Traversal with Java
I'm trying to find a way to communicate between two NAT-ed nodes using Java. My requirements pretty much align with the ICE-specification; i.e. I want to try STUN first and then fall back to relaying ...
10
votes
2answers
5k views
Android and XMPP: Currently available solutions
I'd like to pose a question as to which XMPP library would be the best choice nowadays, for Android development.
I've been using the patched Smack
library from here as is
suggested in many other ...
7
votes
4answers
370 views
how to stop opening of duplicate window using Smack API in swing?
I have 2 swing classes which extends JFrame. Both have show() method in there constructor. From ClassOne i called ClassTwo like new ClassTwo() on button click event. But if i press the button again ...
5
votes
1answer
198 views
How to change your own name using Smack?
You can use RosterEntry to get the name of your contacts. But how I change my own name and it appears to my contacts when they do
RosterEntry entry = roster.getEntries("myuser");
entry.getName(); // ...
5
votes
2answers
720 views
Android: asmack(ported) or smack(patched)?
I have searched alot on google and in here to find the best featured API for XMPP client.
I have found the following two:
asmack: .http://code.google.com/p/asmack/
patched smack: ...
4
votes
5answers
3k views
XMPP with Java Asmack library supporting X-FACEBOOK-PLATFORM
I'm trying to make a Facebook Chat on Android with the Smack library. I've read the Chat API from Facebook, but I cannot understand how I have to authenticate with Facebook using this library.
Can ...
4
votes
2answers
1k views
How to receive Incoming Messages using SMACK lib on XMPP?
I read some examples and tested them but all of them need to start a chat with someone first to receive Incoming Messages... I want to retrieve this Incoming Messages without need to talk first to the ...
4
votes
2answers
210 views
understanding the term “extension” ,“component” and “plugin” in xmpp?
can anyone explain the different "extension" ,"component" and "plugin" in xmpp?
4
votes
1answer
620 views
Can we delay responding to a XMPP presence subscription?
I am using a PacketListener to receive XMPP packets.
If I receive the following:
<presence from="jeanne@belle.com" to="betty@belle.com" type="subscribe"/>
is the XMPP server expecting me to ...
3
votes
1answer
190 views
Image/binary data not being parsed from XMPP vCard
Please help, I am stuck with this issue.
Basically I am getting a AVATAR BASED VCARD i can see that in debug mode, but ASMACK is not parsing image properly. Its just dropping the tag which contains ...
3
votes
1answer
644 views
X-FACEBOOK-PLATFORM authentication with SMACK Java library using OAuth 2.0
First post here so please be gentle.
I'm building a facebook chat client, using Smack library.
I'm using X-FACEBOOK-PLATFORM method in order not to save any passwords. I had it working properly using ...
3
votes
1answer
453 views
Java and Jabber/Smack
I am trying to code a simple example using the latest version of Smack (3.2.1) to send and receive messages between two accounts.
Connection connection = new XMPPConnection("jabber.org");
...
3
votes
1answer
285 views
How do I know if an account exists in a XMPP server from the client?
I'm developing an IM application using Smack library, and I'm facing some problems.
I'd like to know if it's possible to check for the existence of a user by its username in the server. My ...
3
votes
0answers
849 views
SASL (DIGEST-MD5) authentication error with SMACK [closed]
Possible Duplicate:
SASL Authentication failed while integrating facebook chat using Smack
I tries to compile this code and always it raises this exception
SASL authentication failed ...
3
votes
2answers
939 views
facing problem using smack on android
I have a button in Android Application. When the button is clicked following code is invoked:
TestSmack a = new TestSmack();
a.login("abc@gmai.com","password");
I have a TestSmack class.....in the ...
3
votes
1answer
519 views
item-not-found(404) when trying to get a node using Smackx pubsub
I'm trying to use the latest Smackx trunk to get and then subscribe to a pubsub node. However, openfire just sends me a back an error: item not found (404).
I am instantiating the java objects from ...
2
votes
1answer
62 views
SSL error while connecting to Openfire from java-smack client
I am recently working on Openfire client. I've got this strange issue that I couldn't figure out so far (i've got some clues, but still no solid solution).
We've got 2 openfire servers:
first that ...
2
votes
1answer
73 views
Creating a user, getting not-acceptable (406)
I'm using asmack XMPP with android code. I'm logging-in the XMPP server just fine, but the problem occurs when I'm trying to create a new user. What I want to achieve is the following:
Login with ...
2
votes
2answers
201 views
Android Smack MessageEventListener
I´m trying to use XMPP´s message event interface. As far as I understand you can mark a message you send with a 'delivery notification requested' flag and the recipient is than responsible to send you ...
2
votes
1answer
304 views
(a)Smack returns “service-unavailable (503)” error at login()
I'm trying to implement a simple jabber messenger on Android using asmack library. Here's the code:
public boolean login()
{
if (connection != null && connection.isConnected())
{
...
2
votes
3answers
587 views
How to send custom XML packet using Java's Smack API?
I'm using the Smack API in Java to connect to my XMPP server.
I want to send a customized message packet like this:
<message to="you@MyServer.com" type="chat" MYFIELD="custom stuff">
...
2
votes
1answer
721 views
filetransfer in android through xmpp?
I am just trying to transfer a file through xmpp.I am using asmack lib.I am getting exception below.
E/AndroidRuntime( 332): FATAL EXCEPTION: main
E/AndroidRuntime( 332): ...
2
votes
1answer
945 views
Problem using UserSearch in XMPP with ASmack
I have this code, almost unmodified from examples:
UserSearchManager usm = new UserSearchManager(conn);
Form searchForm = usm.getSearchForm("search.myserver.com");
...
2
votes
2answers
338 views
how to add roster with subscription mode “both”
i'm using smack 3.1.0, and when i add a roster,i can't get subscription "both". who can help me?
below is my code:
Roster.setDefaultSubscriptionMode(Roster.SubscriptionMode.accept_all);
Roster roster ...
2
votes
3answers
461 views
XMPP events on Android
I'm trying to develop a background process that intercepts a XMPP message and performs an action, I'm using asmack as the main XMPP library. I presume I need a broadcastReciever that responds to a ...
2
votes
1answer
207 views
Smack API - How to display loop jxTaskpane for expand and collapse roster list
i have problem to display Taskpane for loop. i have a code to get the groups of roster (Groups : Friends - Business - Company, so on)
my code is :
Roster rost = xmppcon.getRoster();
...
2
votes
2answers
276 views
XMPP: RFC on establishing mutual subscription when original requester is offline (subscribed presence)
we've got an XMPP server (OpenFire) and a custom client based on the Java Smack XMPP stack. We're using manual subscription acceptance, so clients have to exchange subscribe and subscribed presences.
...
2
votes
1answer
725 views
Send XMPP message without starting a chat
I am basically writing a XMPP client to automatically reply to "specific" chat messages.
My setup is like this:
I have pidgin running on my machine configured to run with an account x@xyz.com.
I ...
2
votes
3answers
1k views
Smack and aSmack: Differences?
What is the difference b\w smack and asmack?
Why I am not able to use smack.jar on android whereas asmack works perfectly? When compared the source code it looks somewhat similar, where does the ...
2
votes
3answers
1k views
Not able to connect Android client with local XMPP server
Hi
This is with regards to post here
I am able to connect my PC to the local tigase server setup locally(I am using Smack API). Now I am facing problems when I want to connect Android Phone to that ...
2
votes
1answer
658 views
using XMPP for user location
I want to create an application for Android that enables me to get the geolocation of a user. This has to be made as a client-server app and for the server side I'm using OpenFire.
For getting the ...
2
votes
3answers
2k views
How to set/get profile data with XMPP using Smack
I am working on a XMPP client on Android, using the Smack library. The roster/messaging/presence stuff is running very well. However, I didn't find a way to store additional profile information ...
2
votes
1answer
2k views
How to handle add request in smack API
I use Smack API to write my Google talk Client . Now i need to handle add request for this .
I set SubscriptionMode to manual & now I have to registering a listener for presence packets but i ...
2
votes
5answers
2k views
This class uses AtomicBooleans. Is it thread safe?
I don't like to lock up my code with synchronized(this), so I'm experimenting with using AtomicBooleans. In the code snippet, XMPPConnectionIF.connect() makes a socket connection to a remote server. ...
1
vote
1answer
28 views
aSmack MessageListener's processMessage never being called
I am trying the basics of setting up XMPP communication between android phones using aSmack. I have managed to register an account from my app and send messages to a Jabber-ID that I'm logged into on ...
1
vote
0answers
93 views
ANR in XMPP Service
I'm using Smack XMPP client in a custom service, and everything goes well ... until I had some reports of ANR from android market.
I've been reading a lot of Threads of StackOverflow for finding what ...
1
vote
1answer
122 views
I'm looking for a BOSH XMPP library for Android
I recently wrote a Facebook Chat App for Android using Smack, which is an excellent library and it worked great for that app. I'm currently working on my next chat project on Android and would like ...
1
vote
1answer
72 views
Smack, Getting Error in creating new MultiChat
I am using asmack for creating a chat app.
For creating a MultiUserChat i am using following code.
muc= new MultiUserChat(HomeActivity.connection, "chatRoom@conference.live-images.com");
try
...
1
vote
1answer
187 views
Can't register new users on OpenFire using Smack. What do these stanzas mean?
I'm using the Android version of the Smack API and developing a client that auto-registers itself in case it was not previously registered.
Well, if I manually register the user and login with the ...
1
vote
1answer
399 views
Keep XMPP connection (using asmack) alive on Android
I'm developing an application that receives push notifications via XMPP ( I know C2DM, but it has some limitations and I can't use because of it ), the problem is the connection that after some time ...
1
vote
2answers
121 views
How to ensure that only one XMPPConnection will be created? Use singletons?
I'm dealing with creating a web service which will receive requests to send messages via XMPP. However, all messages will be sent from one account (the server logs in and sends notifications to ...
1
vote
4answers
105 views
Toast isn't working in listener
I want to open a Toast, but it doesn"t seem to work in a listener (of Smack), like this example:
private ChatManagerListener chatManagerListener = new ChatManagerListener() {
public void ...
1
vote
1answer
179 views
Android / XMPP: presence listener ignores/drops UNAVAILABLE presences
I'm trying to establish a simple xmpp group chat on Android using the smack/asmack xmpp library. And basically everything is working, except: UNAVAILABLE presences, i.e., when a user leaves a chat ...
1
vote
1answer
316 views
android file transfer using smack
I am working on chatting application and i have to implement file transfer using smack api.
I am able to Connect to the open fire server and can also chat with another client.But i dont know how to ...
1
vote
2answers
98 views
XMPP asmack problem missing attribute
I encountered a problem where an attribute within an XML stanza is missing. Based on the log file on the server side, I can confirm that the attribute is sent from the client to server. Also, when the ...
1
vote
0answers
298 views
How to authenticate to Google Talk with AccountManager's authentication token using Smack API?
This question is similar to: Authenticate to Google Talk (XMPP, Smack) using an authToken
I have android.accounts.AccountManager class and its methods to get authentication token for Google account:
...
1
vote
2answers
437 views
Can't send/resecive messages with openfire server across Smack API
I have my own configured OpenFire server. I have created two users user1 and user2 and I'm trying to send/receive messages between these users across the Smack API.
I switched on debug mode in Smack ...
1
vote
1answer
362 views
Problem with Smack in Facebook chat app for Android: Connection.getRoster().getEntries() is always empty
I'm trying to implement a simple Facebook chat application on Android. It lets the user login, after which the app opens a new ListActivity enumerating the user's online contacts, and upon clicking on ...
1
vote
3answers
331 views
Smack API User search
I'm try to implement a user search on top of my working Smack-API based jabber client.It can create user using:
AccountManager manager = conn.getAccountManager();
...
1
vote
1answer
486 views
smack- create entry in roster
I know that this question has been asked before, but only a partial response has been given by mschonaker here. On my website, user can add people to their roster, then the buddy has to accept and ...