• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error during socket connection

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a socket server and socket client. The client is able to
communicate with the server without any issues. But when we try to kill
the server using kill command, it shows the following error


I dont have any idea on why such an error comes... and how to handle it...
Expecting some guidance on this...

Thanks..
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"Using the kill command", like, something built into your server protocol? Or "using the kill command" like, running the UNIX "kill" program? If it's the latter, then that's pretty much what you should expect -- "kill" isn't the right way to shut down a process cleanly. If you want a nice quiet way to turn your server off, provide another ServerSocket listening on a special port, and when that port receives a connection (or a connection followed by some special input sequence) then have the server exit.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic