Question
Write a program with two parts: 1) a client, and 2) an arithmetic server. The job of the client is to accept input from the
Write a program with two parts:
1) a client, and
2) an arithmetic server.
The job of the client is to accept input from the keyboard and translate strings that you type into requests to the arithmetic server. In other words, the client should translate strings such as "3 + 4" into a request to the arithmetic server.
The format of the request packet sent by the client to the server is follows. Each packet consists of three fields:
- a three-character string representing the operation to be performed, i.e. "add", "sub","div", and "mul"
- the first integer
- the second integer
Note that the size of each request packet (in bytes) will depend upon the representation of characters and integers in the language you're using for this assignment. In C, a character is represented in one byte and an integer in four bytes.
The server should parse each packet, extract the parameters of the request, perform the requested operation and transmit the results to the client, which then prints out the results on the screen. The arithmetic server should implement the procedures add; subtract; multiply; and divide. Each of these procedures should accept two integers as input and return an integer as a result. In addition, the divide procedure must detect an attempted "divide by zero" and return an error code.
Each result packet must consist of two fields. The first field is an integer that takes the values 0 or 1, where 1 represents a successful operation whereas 0 represents an unsuccessful operation (e.g. divide by 0). The second field is an integer corresponding to the result of the arithmetic operation or an error code representing the reason for the error. (For example, you can use the integer 1 to represent "divide by zero".)
There are two versions of this program you have to implement:
1. The client and server communicate using UDP.
2. The client and server communicate using TCP.
You have to submit in both hardcopy and softcopy (electronic submission): (a) the client program (b) the server program (c) output showing your program works correctly (you can run both the client and the server on the same computer for generating this output)
NOTES:
1. It is not acceptable to translate integers into a string for transmitting them over the network. Your packets must follow the formats specified in the description above.
2. Choosing a server port. You will need to run server processes that can coexist with other people's processes in the same computer. You will need to select an agreed port number for the server to accept messages from clients. Two servers on the same computer cannot use the same local port number. You will therefore need to choose a port number that is different from that of other people.
Step by Step Solution
3.64 Rating (184 Votes )
There are 3 Steps involved in it
Step: 1
We write a program with two parts import javaio public class Echo public static vo...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started