Questions tagged [jabberd2]

jabberd 2.x project is the next generation of the jabberd XMPP server project.

jabberd 2.x project is the next generation of the jabberd project.

It has been rewritten from the ground up to be scalable, architecturally sound and to support the latest protocol extensions coming out of the XSF.

jabberd 2.x is not a newer version of jabberd 1.x but a completely different project.

The license under which the jabberd XMPP server is released is the GPLv2 from the Free Software Foundation.

16 questions
4
votes
1 answer

Module to support message archive in ejabberd v13.12

I know that mod_archive (mod_archive_odbc) is there to support message archive[XEP-0313] But it does not work with ejabberd v13.12. Is some one found it (mod_archive) working with v13.12 then please guide me how I could do that ? I just wanted to…
Rahul Gautam
  • 4,749
  • 2
  • 21
  • 30
4
votes
2 answers

How to use notificationconf?

I have read THIS tutorial about creating Push nodes and posting/subscribing to notifications. The only problem I have met is that it seems that notificationconf unable to create that node... My first question: are nodename (parameter of…
beefon
  • 3,194
  • 1
  • 21
  • 25
2
votes
1 answer

Sending message from web browser plugin to android and IOS application using XMPP

I am developing an application that needs to send message from my web browser plugin to my android or IOS app client and get response back on the plugin. I found XMPP as an option for that but it requires separate jabberID(JID) for each client. But…
2
votes
2 answers

Cross platform (iOS-Android) xmpp request

I am creating one chatting application which will work on both iOS and Android platform. Sometimes 'both' subscription is not received at both end. Can anyone tell me what can be the possible issue? ===================== For iOS…
cjd
  • 549
  • 3
  • 11
2
votes
1 answer

ejabberd modules in php

I am trying to write a couple of modules / filter for ejabberd. After successfully implemented external auth in php I was having high hopes, that I will be able to do everything in PHP. What I am trying to accomplish is the following: Ejabberd hooks…
DuppyWeb
  • 43
  • 1
  • 4
1
vote
0 answers

Disable Assertion error dialog box from windows form

I have a windows form application along with some external libraries such as NEwtonsoft-Json.dll , Zlib.dll and some more libraries for different purpose. sometimes im getting this assertion messagebox with 3 buttons (Ignore,Abort,Retry). The…
Lazy Programer
  • 171
  • 1
  • 1
  • 12
1
vote
0 answers

How find name who send me subscribe request on xmpp using strophe

I am connected to openfire(XMPP) server via Strophe. When one user example- "sat" ask for subscription request to another user "sat1". The request and response conversion is as follows. "sat" request to "sat1":-
Satanand Tiwari
  • 486
  • 4
  • 21
1
vote
0 answers

What are the design guidelines for implementing a own/extending XMPP server?

According to XMPP RFC 6120 and from XMPP - The Definitive Guide, setting up a client-to-server session consists of the following phases: Initiating a TCP connection to the server Opening an XML stream Negotiating various stream…
forum.test17
  • 2,119
  • 6
  • 30
  • 62
1
vote
2 answers

How to receive Message Delivery Receipts on Openfire?

How can I receive Message Delivery Receipts on Openfire Server? I would like to receive an acknowledgement at the following states: When the message is received by the Openfire server When the receiver client receives the message When the receiver…
Geekboy
  • 56
  • 2
  • 9
1
vote
2 answers

How to increase Openfire concurrent connection limit?

I am trying to test how many concurrent user connections Openfire can handle. I have noticed a limit at 4000 users. How can I handle 50000 concurrent connections or more on Openfire? What configuration should be done to handle large number of…
Geekboy
  • 56
  • 2
  • 9
1
vote
1 answer

How to Install XMPP on Linux 32-bit OS

I am trying to install xmpp on Linux, i found the following links build a chat server using openfire on centos set up IM on CentOS IM on Cent OS I have an IOS application and i need to build an IM using jabber/xmpp in it. There by allowing users…
Ramaraju.d
  • 1,301
  • 6
  • 26
  • 46
1
vote
0 answers

sleekxmpp : ejabbered : not able to connect to sever

I just installed ejabbered and sleekxmpp. I am trying to run a sample program as mentioned http://sleekxmpp.com/#here-s-your-first-sleekxmpp-bot . Using ejabbered admin I created a sample user. Web Admin->Virtual Hosts->selected…
Programmer
  • 8,303
  • 23
  • 78
  • 162
0
votes
1 answer

XMPP Jabberd2 connection problems

I'm trygin to connect to Jabberd2 server that i've created and here is what i do: ConnectionConfiguration configuration = new; ConnectionConfiguration("localhost", 5222); configuration.setDebuggerEnabled(true); XMPPConnection connection =…
ZaCk1231
  • 61
  • 1
  • 1
  • 3
0
votes
1 answer

How can I get a StateData of a room conference ejabberd

I want to get the current state data record from a particular room. I would like to have something like... get_state_data(RoomName)-> StateData = get_record(Room), SateData.…
user1000622
  • 519
  • 1
  • 7
  • 18
0
votes
1 answer

How to send a packet from Server to Client (from a function) Ejabbered

I am looking for a function. A global function that might do me the work of sending the stream packet to the client. in function A (Server, From, attrs)-> I construct the xml element PacketToBeSent = "Packet + attrs" and so on...., I would need a…
1
2