Tagged Questions
0
votes
0answers
9 views
Get Status of Available chat in XMPP using Smack
i am try to get the chat user status. so i used it:-
Roster roster = connection.getRoster();
Presence presence1 = roster.getPresence("9999999999"+"@mmmmm.com");
Mode status = presence1.isAvailable();
...
0
votes
0answers
4 views
sending XMPP IQ packet to server with ITEM TAG?
I am working in chat application. In which I am using XMPP protocol.I need to send IQ stanza with Item tag.my full IQ stanza as follows.My question is how to add ITEM tag to IQ Stanza?
`<iq ...
-1
votes
0answers
14 views
Xmpp server is working in android 4.2 but it is not working in android 2.2?
I had created a open fire server, it is working quite common for android android 4.2 version but the same thing is not working with the android 2.2 can any body suggest the solution.
-1
votes
0answers
33 views
How to solve java.lang.NoClassDefFoundError? [duplicate]
I am making an Android application which communicates with other client through ejabberd server.
I am using asmack library for communicating with XMPP server. It was working fine but recently started ...
0
votes
0answers
13 views
AndroidCAStore throws NullPointerException warning on 4.2.2 Jellybean
I am using following code for XMPPConnection to get Keystore certificates
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
conf.setTruststoreType("AndroidCAStore");
...
2
votes
0answers
56 views
Is it good to use only GCM for developing chat applications for android ditching XMPP?
A lot of applications like WhatsApp rely on GCM to send notifications to device when the device is idle or the app is running in background. The GCM message just tells the app to sync from the server ...
0
votes
1answer
19 views
Create Group in ASmack
I'm newbie in asmack..
How do I create a group in a group tab in asmack?
I have tried createGroup(String name) as shown here link
but it seems that it is only makes a group in user tab.
Does anybody ...
0
votes
0answers
27 views
How can I compile the swiften XMPP library for usage with Android?
I tried to compile swiften (a XMPP client library) into a lib for Android JNI but failed. Is there anyone successed? Any suggestion would be appreciated.
I compiled swiften as follow steps:
...
3
votes
1answer
50 views
Asmack for facebook chat doesn't work with PrivacyListManager
I am working in an android application and I have integrated facebook chat into my android application successfully with aSmack. But when I login to the facebook chat with aSmack libary, my facebook ...
-1
votes
1answer
23 views
Android File sharing between users
I want to know the ways of sharing files to another user in android.Like XMPP, If i open the file in my android mobile ,I want to share that file to another user.i don't want to use XMPP.
Please guide ...
-2
votes
0answers
17 views
Android Asmack File Transfer service unavailable error 503 remains unsolved even after trying out the ways suggested in Stack answers
ServiceDiscoveryManager serManager = new ServiceDiscoveryManager(mConnection);
FileTransferNegotiator.setServiceEnabled(mConnection, true);
FileTransferManager manager = new ...
0
votes
0answers
18 views
android gtalk - MultiUserChat - XMPP - not able to Receive Invitation
I am trying to make a chatserver using gtalk/gmail credentials. I am able to Create an XMPPConnection using one of the accounts that I have used to log in gtalk / gmail app . I am able to send Invite ...
2
votes
0answers
32 views
Presence listener not working in asmack
I am developing a chat application for Android using asmack. The connection is getting established and I'm able to login also. I've added listener for IQ packets and that is working fine. I have added ...
0
votes
0answers
32 views
XMPP Asmack FileTransfer giving “Could not create file to write too” error when the file is received
I have added the file transfer code to my Android app, i am compressing the file before transferring. When i transfer the file and debug the control comes to my receive file method and when it creates ...
-6
votes
0answers
44 views
Where can i save chat history in android? sqlite, sdcard, remote server (without loading time ), other [closed]
I created a chat application. That is taking a lot of loading time at the time of get the chat history from the remote server. If i will use sqlite then i think it is Ok and remove loading time to get ...
-1
votes
0answers
38 views
Using XMPP in Phonegap [closed]
I'm new to XMPP and phonegap, I'm trying to implement a chat based application using phonegap, i have installed openfire in the server for chat application. Anyone help me out how to implement chat ...
-1
votes
0answers
24 views
Create User Using Asmack Android Library
I am using openfire xmpp server , and for client i am using asmack library in android
I am able to connect to server but while i am trying to create account for user it is giving error as
"Internal ...
0
votes
0answers
17 views
XMPP Roster Management
I am developing a chat application in android with XMPP.I am using openfire as my chat server.I am struggling with a bug from a long time and the bug is regarding roster management.
I found that the ...
1
vote
1answer
70 views
How to receive files in Smack in androd?
How to receive transfered file using Smack with Openserver in Android? Here following is a code which I have used to receive a file. But getting error and can not rec any file.
...
0
votes
0answers
55 views
how to use xmpp (smack) over talk.google.com server for OWN chat app
private static final String HOST = "talk.google.com";
private static final int PORT = 5222;
private static final String SERVICE = "gmail.com";
// establish connection
connConfig = new ...
2
votes
0answers
44 views
Android asmack received iq packets are formatted in wrong way
I am using asmack for implementing chat client application.
I am sending an IQ request for fetching previous chats. Though I get all previous chats some of them are broken. Actually output should be ...
0
votes
2answers
60 views
dynamically change textview in Fragement (public void processMessage)
I am looking for a way to create a chat fragment. So basically I am trying to make a fragment dynamic. As a first step I am trying to update a textview which I have to display messages received. I am ...
0
votes
0answers
23 views
How to - who is the owner of a room from Occupants list?
I am trying to implement a MultiUserChat with the aSmack API
So far I managed to create a new MultiUserChat room, join it, and send invites out.
My problem as of now is
how to find out who is the ...
0
votes
3answers
130 views
Android XMPP File Transfer
I'm newbie to Android programming. I'm trying to develop messenger application with file transfer feature. But having difficulties reagrding file transfer.
viewer.java**
Button transfer = (Button) ...
-1
votes
0answers
87 views
getting error while file transfer using asmack in android
i am working on android to build my chat app and its working fine but when i try to transfer file with other user then i cannot able to share but i m not getting any error and cannot send file.
So ...
2
votes
0answers
61 views
Multi user chat is not working on server
Using smack API,openfire and XMPP i had created chat application in android.
In that i added group chat functionality.But on my local server it work's fine but when i am trying to run on server first ...
-1
votes
0answers
92 views
Code for Facebook chat using XMPP in android [closed]
I am new in android, in my application i have to write a code for facebook chat with friends
so please provide any sample application so i can integrate with my application
thanks in advance
1
vote
2answers
65 views
how can i stop my AsyncTask thread. or stop chatmanager
I developed chat app using xmpp by smack client. I used a background thread for incoming msg notification and working fine. But now when I am in chat view then I don't want notification of incoming ...
1
vote
1answer
60 views
How to remove packet listeners of XMPPClient using Smack
I developed a chat app using Smack by XMPP server(openFire). For getting incoming message, i used to PacketFilter
This is incoming msg code:-
PacketFilter filter = new ...
0
votes
0answers
39 views
Server does not support account creation exception. XMPP / MySQL Database
I have Openfire server with a MySQL database, I can log in, chat, send and receive files seamlessly from my application on Android. But when I try to create an account from the application, the server ...
2
votes
1answer
75 views
No response from the server error in ejabberd server
Now i am working with xmpp chat for android uisng ejabberd server ,when i am trying to connect with server it shows error.but it works fine in openfire server.am using smack library. error log is ...
0
votes
0answers
62 views
Creating Chat Room In Android Gives Error:"item-not-found(404)
I am developing a chat application using ASMACK. I am able to connect and send messages for private chat.However, when trying to create a chat room i get the error:
item-not-found(404)
This ...
0
votes
0answers
34 views
Adding Listeners for MultiUserChat (aSmack)
How can we initialize MultiuserChat, these are the details, to create an object of MultiuserChat class we need the connection and room name as parameters
// this is the constructor of MultiUserChat
...
1
vote
0answers
61 views
Retrieving location information of users registered in a Smack XMPP Server (Without subscription)
So here's my idea.
I wan't to list all the users registered on an XMPP server within my location radius.
So that I could add (if interested).
I use smack API and I am basically building an android ...
0
votes
0answers
183 views
How to create Group chat in android?
I am using aSmack library for creating Group Chat ( MultiUserChat) in android. able to create MultiUserChat instance, getting available rooms in that domain and able to join in a perticular room. Now ...
2
votes
1answer
35 views
Send item to pubsub node in asmack
I am developing an android chat client app and I'm using asmack for XMPP implementation. I was able to make connection to my XMPP server. I need to send chat messages to specific node to which I'm ...
0
votes
0answers
89 views
Not Receiving Chat Messages In Android Chat Application
I am developing an application that will require chat features...i have an activity that uses a listview to display messages. The issue is that the listview only displays messages that i type, and ...
2
votes
0answers
95 views
Show chat history with asmack in android
I am developing an android chat client app and I'm using asmack for XMPP implementation. I was able to make connection to my XMPP server and was able to make send chat messages. I need to show chat ...
0
votes
2answers
76 views
How to get progress dialog until get the response from service in android?
I am using service for running long background tasks in my application, in the service these functions are running login to XMPP and getting some data from XMPP server. i want to show the progress bar ...
0
votes
0answers
44 views
Entry with automatic authentication in roster table in openfire from PHP
I want to implement chat functionality in my android application. My server is PHP server. For that I am using openfire with jabber server and XMPP. But after adding user into ofUsers table in ...
2
votes
1answer
117 views
How to get DiscussionHistory for MultiUserChat room using aSmack?
How to get the DiscussionHistory of a MUC room from MultiUserChat? I am able to create MultiUserChat instance and room by using aSmack library, now I want to show all the previous conversations that ...
0
votes
2answers
258 views
Login exception SASL authentication failed using mechanism DIGEST-MD5 asmack in android
I m try to connect with Xmpp server,But i m getting exception
Login exception SASL authentication failed using mechanism DIGEST-MD5
i use this code ,can any one help me,or code
try {
if ...
0
votes
1answer
188 views
ClassCastException when creating MUC room for XMPP group chat using aSmack
I am using aSmack for creating chat application. When i am creating groupchat by using this aSmack it gives error. this is the code am using for creating GroupChat.
MultiUserChat muc = new ...
0
votes
1answer
108 views
XMPP service-unavailable(503) error during UserSearchManager
This morning i have involved with a complex problem.
I am creating chat application using XMPP. I have success to login and can chat with user.
Now, I want to search user in XMPP server. But i got ...
0
votes
0answers
49 views
XMPP connect to server “ok” but advance search is not working
I am creating chat application using XMPP server. Everything is ok and i can chat with other. But Now time , i want to display all the user name from XMPP server. so i am using to "UserSearchManager" ...
0
votes
0answers
105 views
Add member to Group in XMPP
I managed to create a user in my xmpp server successfully(asmack).
AccountManager am = m_connection.getAccountManager();
am.createAccount(mUserName, "1234");
However, now I want to add this newley ...
-6
votes
1answer
81 views
Integrate Chat functionality in android app [closed]
what is the best way to integrate chat functionality in android application, i have searched and found using xmpp we can integrate chat functionality,but how to configure xmpp into android ...
0
votes
0answers
120 views
Listview not update when message is received in chat application
I had create a simple chat application in android using smack,xmpp,openfire.
when i sent & receive message at that time it is updated in listview ,
but when i closed chat window and again open.
...
0
votes
0answers
73 views
XMPP - Publish User Location to all members in chat room
I created a chat using XMPP (smack) successfully. However , now I need to publish a user's location(longitude,latitude) and publish it to all registered user's in group chat. I read in the ...
2
votes
1answer
292 views
Unable to login to ejabberd server using XMPP client in Android
I am trying to connect & login to ejabberd server using a XMPP client in Android. The XMPP client connects to the server but doesn't logs in. I am getting Exception message as No response from the ...
