Well as long as you have one socket open at the server end and one at the clientend and both are talking you dont need anything else. All the server end socket has to do is keep listening for incoming connections and whenever there is a connection request fork off a new connection in a seperate thread. Thats all that is required from server side and you can do it in as little as 50 lines of code. I did it in C++ with 50 lines that included login and passwd protection. The client side will also be similar 50 lines of code plus all the extra code for the user interface whcih in flex shouldnt be a lot :-)
Cheers Pankaj On Wed, Feb 4, 2009 at 5:12 PM, kundan singh <[email protected]>wrote: > Hi Friends > > Can we create a chat application by using socket connection in flex and > java without using any media server or blazeDs. > > > Regards > Kundan > > > > -- Cheers Pankaj --------------------------------------------- http://13degree.wordpress.com Do your dreams! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/flex_india?hl=en -~----------~----~----~----~------~----~------~--~---

