Questions tagged [apache-vysper]

XMPP Server written in Java.

Apache Vysper is an upcoming modular, full featured jabber server written in Java. It can be embedded into other Java applications or it can also run as a standalone application.

19 questions
6
votes
1 answer

Apache MINA Vysper documentation?

I plan on making an instant messaging app on Android and iOS, where you can chat to other people with the app, along with some custom features. I’m going to use the XMPP protocol, and make a custom extension for it. I plan on making a Java…
Jon Cox
  • 10,622
  • 22
  • 78
  • 123
2
votes
1 answer

how to run apache's vysper xmpp server

I'm having issue running vysper. Download/Extract Files frome here (Apache Vysper 0.7 Release) Modified the spring-config.xml to have additional users/passwords Just updated this section:
darewreck
  • 2,576
  • 5
  • 42
  • 67
2
votes
1 answer

XMPP Server Vysper vs. OpenFire/Tigase (how to create simple XMPP server)

I'm actually trying to find the best way to write a simple XMPP server or find one that leaves a really small foot print. I only care about the core features of XMPP (statusing, messaging, group messaging) . Also learning about XMPP protocol at…
darewreck
  • 2,576
  • 5
  • 42
  • 67
2
votes
1 answer

sending message from xmpp server vysper in java

I have set up simple server and client, but i don't no how to send message from xmpp server to client. Please give me some help. If possible then suggest me some links.
2
votes
1 answer

vysper server login fail

I'm making a vysper xmpp server. Here's my code: public static void main(String[] args) throws Exception { XMPPServer server = new XMPPServer("myserver.org"); StorageProviderRegistry providerRegistry = new…
Karl Marx
  • 21
  • 2
1
vote
1 answer

Example on how to use Vysper xmpp with smack

Anyone could point an example, tutorial, doc, etc, about how to use Vysper to serve xmpp. I managed to start Vysper but cant find anything on how to exchange messages. I'm trying to create a chat app, much like whatsapp, google talk and so on. I…
ramires.cabral
  • 910
  • 4
  • 13
  • 28
1
vote
1 answer

vysper address already in use

i would like to use the XMPP server "Apache Vysper" in a Java-project, so i copy this example-code: public class Start { /** * * @param args */ public static void main(String[] args) throws AccountCreationException, …
Rene Hauck
  • 13
  • 3
1
vote
0 answers

How to configure vysper api to communicate from one xmpp server to another xmpp server

I am trying to implement a project where any client from one xmpp server can communicate to a client who belongs to another xmpp server. Both the servers are written using vysper api. How can I write server program or module so that my objective…
Mrinmoy
  • 21
  • 2
1
vote
1 answer

Create an external component to a Openfire

I want to create a XMPP Server for 3 features: Whenever any client connects to the server, the server send a message to the client. The server can publish a message to the client (publish/subscribe architecture). A client can send a message to the…
user1386101
  • 1,945
  • 1
  • 14
  • 21
0
votes
2 answers

XMPP wrong sender address (broadcast serverside)

On messaging from server to all active clients of one user the sender-address is not correctly written. This is the broadcast-function (serverside): private void sendAllSessions(final StringBuilder message, final Entity sender, final…
Grim
  • 1,938
  • 10
  • 56
  • 123
0
votes
1 answer

Apache Vysper with Smack 4.1.8 client library - how to handle the TLS certificate?

I want to connect to an Apache Vysper Server using the Smack 4.1.8 library. But how to handle the bogus_mina_tls.crt that comes with Vysper? In Smack 3 you just could use: ConnectionConfiguration connectionConfiguration = new…
0
votes
0 answers

Apache Vysper - XMPPServer ClassNotFoundException

I have a short question. I want to create a XMPP server with Apache Vysper. But when I try to create a server: XMPPServer server = new XMPPServer("myserver.com"); I get a ClassNotFoundException on this line, although the class is imported…
0
votes
1 answer

Can an embedded XMPP server in a Java EE container be harmful because of threads?

I was playing a little bit with Vysper, embedding it into a Java EE web application in TomEE. Vysper is an alpha/beta version of a XMPP server based on Apache Mina that can be easily embedded into java applications. I could sucessfully instantiate a…
Leo
  • 6,480
  • 4
  • 37
  • 52
0
votes
1 answer

jabber-net and vysper message broadcast facility

I have establish chat communication between two users using jabber-net xmpp client and vysper server by apache. I am looking for broadcast facility using the same.
Priyank Thakkar
  • 4,752
  • 19
  • 57
  • 93
0
votes
1 answer

jabber-net onAuthenticated doesn't get called

I am using jabber-net as my xmpp chat client with C# application. Chat server I am using is apache vysper 0.7 I created chat client using following code. private void ChatOne_Load(object sender, EventArgs e) { JID jid = new…
Priyank Thakkar
  • 4,752
  • 19
  • 57
  • 93
1
2