While i am running my program i have svrSocket.accept() method..My program is automatically getting terminated when it reaches to svrSocket.accept() method. Please suggest what needs to be done.

link|improve this question
Look at your console for errors and debug:) – Petar Minchev Apr 14 '11 at 13:49
5  
My guess is that you've got an empty catch-block somewhere. Could you post a minimal example that demonstrates the problem? Posting a SSCCE would be ideal. – Joachim Sauer Apr 14 '11 at 13:50
Could you add some details or perhaps post a minimal example that demonstrates your problem? – sverre Apr 14 '11 at 13:50
nothing is getting printed in console. – Gaurav Anand Apr 14 '11 at 13:51
1  
OK, but could you post some example source code? We're not psychic, so we can't debug your code from over here. – sverre Apr 14 '11 at 13:55
show 4 more comments
feedback

2 Answers

Here is what you need to provide before we can really help you.

  1. Stacktraces for exceptions that accept() might be throwing. If this is a simple console application look for those in the console of your IDE. There is a separate window that it runs in and shows output like this.

  2. Is the program truly terminating? accept() is a blocking call and blocks forever until another process connects to it through the socket. Have you tried running a client that connects to your server socket to see if it un blocks and continues to run? If you have to click the stop button, if multiple run windows are open then your program is simply blocked on the accept() call and it's working as designed.

link|improve this answer
feedback

Without example code or an error message for reference, according to the API, your application may not be catching one of the following exceptions:

  1. IOException
  2. SecurityException
  3. SocketTimeoutException
  4. IllegalBlockingModeException

Also, are you sure your application terminates? The only reason I ask is accept() blocks until a connection is made.

link|improve this answer
I have handled all the exceptions nothing is getting printed in console. – Gaurav Anand Apr 14 '11 at 13:59
@Gaurav: Edit your question and include relevant code, otherwise everyone is left shooting in the dark. – mre Apr 14 '11 at 14:08
feedback

Your Answer

 
or
required, but never shown

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