Click here to Skip to main content
16,010,650 members
Home / Discussions / Java
   

Java

 
AnswerRe: FTI Messenger Pin
TorstenH.7-Aug-12 5:13
TorstenH.7-Aug-12 5:13 
AnswerRe: FTI Messenger Pin
Joan M11-Aug-12 3:38
professionalJoan M11-Aug-12 3:38 
Generalsynchronization validation and display of dialog in a primeface JSF2.0 form Pin
ahmadiss7-Aug-12 2:42
ahmadiss7-Aug-12 2:42 
QuestionChat Server Issue Pin
Joshua Waring6-Aug-12 3:37
Joshua Waring6-Aug-12 3:37 
GeneralRe: Chat Server Issue Pin
pasztorpisti6-Aug-12 5:03
pasztorpisti6-Aug-12 5:03 
GeneralRe: Chat Server Issue Pin
Joshua Waring6-Aug-12 5:33
Joshua Waring6-Aug-12 5:33 
GeneralRe: Chat Server Issue Pin
pasztorpisti6-Aug-12 6:22
pasztorpisti6-Aug-12 6:22 
AnswerRe: Chat Server Issue Pin
BobJanova6-Aug-12 5:23
BobJanova6-Aug-12 5:23 
If you're using blocking socket calls then you need a thread per client, and a thread for the server (if the server is a console application which does nothing else then that can be the main thread). accept and recv both block indefinitely so they need to be in separate threads. (send also blocks, but only for a short time so you don't need to worry about that in my experience.)

You can use java.nio.* for asynchronous sockets. I've never used it but there are some examples here[^] and searching will turn things up.
GeneralRe: Chat Server Issue Pin
pasztorpisti6-Aug-12 6:29
pasztorpisti6-Aug-12 6:29 
GeneralRe: Chat Server Issue Pin
Member 93392916-Aug-12 16:11
Member 93392916-Aug-12 16:11 
GeneralRe: Chat Server Issue Pin
pasztorpisti6-Aug-12 19:55
pasztorpisti6-Aug-12 19:55 
GeneralRe: Chat Server Issue Pin
Joshua Waring7-Aug-12 0:17
Joshua Waring7-Aug-12 0:17 
GeneralRe: Chat Server Issue Pin
pasztorpisti7-Aug-12 0:23
pasztorpisti7-Aug-12 0:23 
GeneralRe: Chat Server Issue Pin
Joshua Waring7-Aug-12 1:07
Joshua Waring7-Aug-12 1:07 
GeneralRe: Chat Server Issue Pin
pasztorpisti7-Aug-12 1:42
pasztorpisti7-Aug-12 1:42 
GeneralRe: Chat Server Issue Pin
Joshua Waring8-Aug-12 0:10
Joshua Waring8-Aug-12 0:10 
GeneralRe: Chat Server Issue Pin
pasztorpisti7-Aug-12 0:52
pasztorpisti7-Aug-12 0:52 
GeneralRe: Chat Server Issue Pin
Joshua Waring7-Aug-12 1:57
Joshua Waring7-Aug-12 1:57 
GeneralRe: Chat Server Issue Pin
pasztorpisti7-Aug-12 2:33
pasztorpisti7-Aug-12 2:33 
GeneralRe: Chat Server Issue Pin
Joshua Waring7-Aug-12 3:18
Joshua Waring7-Aug-12 3:18 
GeneralRe: Chat Server Issue Pin
pasztorpisti7-Aug-12 3:50
pasztorpisti7-Aug-12 3:50 
Questionplease help Pin
Mohammed Kherfan5-Aug-12 0:25
Mohammed Kherfan5-Aug-12 0:25 
AnswerRe: please help Pin
Richard MacCutchan5-Aug-12 1:21
mveRichard MacCutchan5-Aug-12 1:21 
AnswerRe: please help Pin
wo_buhui6-Aug-12 23:18
wo_buhui6-Aug-12 23:18 
Questioninteracting with parent Pin
JR2122-Aug-12 7:11
JR2122-Aug-12 7:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.