vote up 0 vote down star

In order to satisfy customer requirements, we will need to let users exchange information among each other. The 'messaging system' does not have sophisticated back-end requirements and could be easily implemented with a few tables to store messages and message types.

The problem is that I believe that the requirements on the front-end are very high and usability is very important. In addition I expect this communication's part to become an important part of the system in the long run.

Is there anything that can be directly integrated into a Java web application and adapted to the application's design? What we need is the following interface

From service layer:

  • send message to user (header, subject)
  • reply to a message
  • notification on new message in user inbox (if possible: on current page)
  • interface to existing user management

Preferably, the component should already have a front-end with the following functionality:

  • message management (select, remove, reply, delete/restore, ...)
  • folders: inbox, sent, trash
  • tagging: message categories
  • show last x messages in a panel/div
  • styling to look like the application

If there is something reasonably stable, I would prefer using a component before implementing something like this into the application. The application runs on Wicket, but we are not tied to this framework for the messaging component.

Thank you, Kariem


In portal servers, you have the flexibility to add portlets that could do something similar to the component I am looking for; e.g. Liferay provides mail and message boards portlets.

As akf points out in a comment Jabber provides a solid basis for messaging. We are looking for something that can be integrated into a web application. If we have to build a lot of UI around Jabber, we cannot really consider it a good fit for our requirements.

flag

60% accept rate
it might be good to look into Jabber (en.wikipedia.org/wiki/Jabber) before you get started – akf Jun 25 at 15:19
Thank you for the input. Something based on the jabber protocol would be great, but is not necessary. The current system uses some tables internal to the application to store the messages and references. You see we are quite tolerant to the system design. – Kariem Jun 26 at 12:19

1 Answer

vote up 0 vote down

I think a web-based IM client like SparkWeb can be useful in your scenario.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.