Questions tagged [tigase]

Tigase is an open source (GPL3) collection of XMPP/Jabber software (server, web client, test-suite) implemented in Java.

Tigase is an open source (GPL3) collection of XMPP/Jabber software (server, web client, services) implemented in Java.

Tigase sub-projects:

  • tigase-server - Tigase XMPP server;
  • tigase-xmltools - Tigase XML Tools used for fast and low-resource XML parsing;
  • tigase-testsuite - test-suite for testing Jabber/XMPP servers in java;
  • tigase-utils - repository of utility classes which can be used outside of the Tigase server project;
  • tigase-messenger - Tigase Web Messenger;
  • jaxmpp - Tigase XMPP Client Library, java library for client-side programming for XMPP.

Links:

75 questions
0
votes
1 answer

How to send broadcast message to users using tigase

I met a problem in my project.I used tigase to push message to android client,but sometimes we should push more than 1000 users's notices at one time . Using smack api to implement this is too slow .Is anyone has new method to do this ? Can I add a…
0
votes
1 answer

Statistics List in Tigase Component

In my Tigase component i have override getStatistics method to add the statistics ( i.e. no of spam messages, all process packets etc) in the list. How can i access that list outside that method or component.In this Component implementation - Lesson…
Haider Ali
  • 800
  • 2
  • 9
  • 22
0
votes
1 answer

Overriding Tigase OfflineMessages class

I'm developing a chat application using Tigase server in the background for providing the XMPP communication. Besides that I'm using smack/asmack as a library in my application. With every message send between the users, for the sake of the…
R3dH4nd5
  • 35
  • 1
  • 4
0
votes
1 answer

Implement QoS in Tigase

QoS is a way to guarantee message delivery in Tigase/XMPP. Can anyone please let me know if there is any XEP available for it Or any standard which can help me in guaranteed message delivery. What if i maintain a queue of every outgoing packet in…
Haider Ali
  • 800
  • 2
  • 9
  • 22
0
votes
1 answer

Intercept and filter incoming packets at run time in Tigase (XMPP)

I am using Tigase(XMPP) server. I want to block every incoming message from a particular JID. At the moment i am blocking a particular JID by dropping it's packet in Message.java inside /tigase/xmpp/impl package. Is it the right way to do this, if…
Haider Ali
  • 800
  • 2
  • 9
  • 22
0
votes
5 answers

XMPP Server, smack API connectivity

I am trying to connect to Tigase Server, implement a client in Java using smack API. ConnectionConfiguration config = new ConnectionConfiguration("192.32.104.93", 5222, "ELVES-D463645"); Connection connection = new XMPPConnection(config); …
Hiren
  • 772
  • 9
  • 23
0
votes
1 answer

SMS gateway integration with Tigase

I am using Tigase server for my application.I want to Integrate my server(Tigase) with SMS gateway. Is there any support available in Tigase. Thanks
Haider Ali
  • 800
  • 2
  • 9
  • 22
0
votes
1 answer

Sending Custom Message to Client in Tigase

I am using Tigase server and smack library ( for android on client side ). In Tigase when user A send a message to user B and if user B is offline it store the message in database and send to user B later when it comes online again. I want to add…
Haider Ali
  • 800
  • 2
  • 9
  • 22
0
votes
1 answer

User created chat rooms in Tigase

In Tigase, how a connected user can "creates chat rooms" which are visible to all the contacts in roster so that any of them can "join" the room (with creator’s permission) Thanks!
Atul
  • 3,778
  • 5
  • 47
  • 87
0
votes
1 answer

Tigase: sometimes i receive offline messages twice

I use Tigase as XMPP server. Everything is OK, but sometimes i receive offline messages twice, the second after 25 mins after 1st (sometimes after a day) for example: 2013-01-03 11:53:00.923 xmppStreamDidReceiveMessage:
Rubycon
  • 18,156
  • 10
  • 49
  • 70
-1
votes
1 answer

Tigase-XMPP Message Packet with Custom Elements or Attributes

AaaaaaaaaaaaaaaaaaaaaaaaaaAAaaaaaaa
-1
votes
2 answers

How to connect tigase to openfire?

I have two Xmpp server,one is tigase, another is openfire. Now i want users can communicated with each other between the two servers, how can i do? how can i modify the configuration of the tigase? Thanks very much.
zhaofei
  • 23
  • 3
-1
votes
2 answers

Tigase XMPP server BOSH URL

Please help me determine the Tigase XMPP server BOSH URL
Alexandr
  • 120
  • 6
-2
votes
1 answer

Check available status of XMPP user not in buddy list

I am working with XMPP iOS SDK and I need to get the Presence of a user that may or may not be in my buddy list. Through didReceivePresence delegate method of SDK provides presence of only users that are already added in my buddy list. Quick help…
Azeem Akram
  • 103
  • 1
  • 10
-3
votes
1 answer

I am going to write file (logs) on server in deferent languages. english_name.txt is ok, "عاتبوها.txt" is showing "?????.txt" on server

Going to log on server in differant languages say "عاتبوها.txt" but it is showing "?????.txt" on server. Code to write logfile on sever below : BufferedWriter bw = null; FileWriter fw = null; String label = "label test"; // this content comming…
Mithilesh Kumar
  • 92
  • 1
  • 2
  • 13
1 2 3 4
5