0

Any help would be great please..!

  1. How to build an intranet chat application using java which includes transform of files like gtalk?
  2. where to start the process?
  3. what all the sw requirements?
Carl Smotricz
  • 66,391
  • 18
  • 125
  • 167
Bhuvana Nagulan
  • 129
  • 1
  • 10

4 Answers4

1

The Eclipse Communication Framework includes several use cases based upon real-time shared editing over XMPP/Google Talk and Skype

And ECF is the base for a twitter client (as an example of what you can do with that framework)

alt text

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • Thanks much vonc but what is twitter client? – Bhuvana Nagulan Dec 15 '09 at 12:13
  • @Bhuvana http://en.wikipedia.org/wiki/Twitter "Twitter has been described as akin to a Web-based Internet Relay Chat (IRC) client": that is why I mentioned it: as an example of a particular type of chat. In Java. based on ECF. – VonC Dec 15 '09 at 12:40
  • Any idea if ecf needs an osgi container ? – mP. Mar 11 '11 at 03:05
1

you must have learned networking in java (java.net.*)
be sure of what king d of architecture you want to use

  • client/server
  • p2p
  • xmpp
guru_001
  • 535
  • 6
  • 12
0

If you need to deploy one, you can use Jabber with one of many Java Clients out there.

If you need to write your own server and/or client, you can start with this question and use an existing XMPP (IM protocol) libraries.

Community
  • 1
  • 1
Pablo Santa Cruz
  • 176,835
  • 32
  • 241
  • 292
0

Why build one when good open source solutions based on open standards are available.

Take a look at running an Openfire XMPP (Jabber) server.

Theres a variety of clients available the best being:

I beleive that a flash client is also available.

pjp
  • 17,039
  • 6
  • 33
  • 58