tags:

views:

635

answers:

6

Hey any body please help me to implement a simple XMPP server using Java.

Thanks, KC.

A: 

Can you use the libraries mentioned here?

djna
I am trying to develop our own library.
Praveen K C
+1  A: 

Sorry for the question, but are you sure, you need to implement a xmpp server? Wouldn't it be enough to just install an existing one? For all my work with XMPP I always used the openfire server and concentrated on implementation of 'special' clients.

I usually use the smack libraries.

Andreas_D
Thnak you for ur reply..If we are using Smack libraries or JSO we are just using these library functions for implementing XMPP server. My aim is how to develop these Librarues. We are getting all information about XMPP protocol specifications, using these how we can develop our own libraries. Can u help me on this.
Praveen K C
Sorry, no I can't. But it's still reinventing the wheel to me.
Andreas_D
Actually i am trying to do an accadmic project. so i want to implement basic features of XMPP protocl in java.
Praveen K C
A: 

There's a pure Java XMPP server in development as a subproject of MINA.
It's called Vysper, and they are currently in an early state.
You can start here: http://mina.apache.org/vysper/
I think they will be thankful for some help.

Hardcoded
Thanks, i just went through the given link, its interesting.
Praveen K C
A: 

ignite realtime's OpenFire is an open source IM application, implementing the XMPP protocol.

Stephen Denne
A: 

Certainly you can take a look at tigase ... they try to be fully functional and yet very simple (in terms of dependencies etc.).

mcepl
A: 

You can also check Open-IM it is a little bit outdated but as it is opensouce (BSD) you might find some useful code there.

Jason