Need help with coding in Java. Just create the server.    In this part, you will implement a Server class that will accept only one connection, process its requests, and then the Server will end.  Create a Server class in the package edu.ucdenver.server The constructor should take the port and backlog to open the server. The server should implement the Runnable interface.  Override the following public methods: public void run() This will implement your server. Similar to runServer() from our lecture examples. Upon a client connection, the server will listen for requests. Once one is received, will be processed (see below) and the response will be send to the server.  Keep accepting requests until the client disconnect. No termination message will be send, the client will just disconnect.  Protocol: the communication will be text based.  fields will be delimited by a vertical bar ( | ) clients may send either two requests: "E|text" -> requesting the server to encode the clean text "text" into Morse Code "D|morse" -> requesting the server to decode the received text "morse" from Morse Code to clean text Server may respond: "0|text" -> to either E and D requests. Text will correspond with either the encoded or decoded string.  "1|Not Implemented" -> if the server got a requests unrecognized by the server. E.g. "C|" or "E Hello world" "2|Invalid Message Format" -> if the message format is not correct. Eg. "E", the command is correct but the arguments received are not (in this case no text was sent). Important Notes: Quotes were added just to delimit the message descriptions, and are not part of the actual message.  Make sure your server terminates after the client disconnects. Your code test will be aborted otherwise.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Need help with coding in Java. Just create the server. 

 

In this part, you will implement a Server class that will accept only one connection, process its requests, and then the Server will end. 

  • Create a Server class in the package edu.ucdenver.server
  • The constructor should take the port and backlog to open the server.
  • The server should implement the Runnable interface. 
  • Override the following public methods:
    • public void run()
      • This will implement your server. Similar to runServer() from our lecture examples.
      • Upon a client connection, the server will listen for requests. Once one is received, will be processed (see below) and the response will be send to the server. 
      • Keep accepting requests until the client disconnect. No termination message will be send, the client will just disconnect. 
  • Protocol:
    • the communication will be text based. 
    • fields will be delimited by a vertical bar ( | )
    • clients may send either two requests:
      1. "E|text" -> requesting the server to encode the clean text "text" into Morse Code
      2. "D|morse" -> requesting the server to decode the received text "morse" from Morse Code to clean text
    • Server may respond:
      • "0|text" -> to either E and D requests. Text will correspond with either the encoded or decoded string. 
      • "1|Not Implemented" -> if the server got a requests unrecognized by the server. E.g. "C|" or "E Hello world"
      • "2|Invalid Message Format" -> if the message format is not correct. Eg. "E", the command is correct but the arguments received are not (in this case no text was sent).
  • Important Notes:
    • Quotes were added just to delimit the message descriptions, and are not part of the actual message. 
    • Make sure your server terminates after the client disconnects. Your code test will be aborted otherwise.
Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Developing computer interface
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education