Using Java Programming Language: Write a multithreadedclient/server application that allows the client to ask the userfor a String. The String is put into an object of type MyStringwith attributes stringValue and length. The Client sends theMyString object to the server. The server application accepts theString, sets the stringValue to the reverse of the String and setsthe length attribute to the length of the String then sends theMyString object back to the client. The client prints the MyStringobject. The server and client should run indefinitely. You shouldname your files MyString.java Client.java and Server.java
Answer
/*Server.java*/
/*
* To change this license header, choose
OR
OR