国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫UDP Client-Server application java程序

時間:2024-02-21  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯




Programming Assignment 1

Objective of this assignment:

.     Develop and implement a simple application using UDP sockets. The client must be implemented in Java. The server can be implemented in Java or in your preferred 1 language (different from Java) for a 5 points bonus. Insure that your preferred language is already installed and available on Tux machines. It is your responsibility to check ahead: do not check/test at the last minute.

What you need to do:

1.   Implement a simple UDP Client-Server application

Objective:

The objective is to implement a simple client-server application using a safe method: start from working code for the client and the server. You must slowly and carefully bend (modify) little by little the client and server alternatively until you achieve your ultimate goal: meeting all requirements for this assignment. You must bend and expand each piece alternatively the way a black-smith forges iron. From time to time save your working client and server such that you can roll-back to the latest working code in case of bugs. Not using this "baby steps" strategy may leave you with a ball of wax hard to debug.

For this programming assignment, you are advised (optional, not mandatory) to start from the Friend client and server code (see lecture and resources) to implement this simple application. The Friend app was presented during the lectures. Consider using Wireshark to check whether the protocols you implement meet this assignment requirements. If using a language other than Java for the server, you are on your own. Ensure that your preferred language is already available on Tux machines. It is your responsibility to timely check. Start ahead. Do not wait until the last minute.

Hint: look at how to “ How to get started?” below

Part A: Datagram socket programming

The objective is to design a Calculating Server (CS). This calculating server performs bitwise  Boolean and arithmetic computations requested by a client on signed integers. Your server must offer the following operations:  1) addition (+), subtraction (-), 3) bitwise OR (|), 4) bitwise AND (&), 5) division (/), and 6) multiplication (*).

A client will form a request  following  this protocol (byte per byte):



TML

Op Code

Operand 1

Operand 2

Request ID

Op Name Length

Op Name

Size (bytes)

1

1

4

4

2

1

Variable

Where

1) TML is the Total Message Length (in bytes) including TML. It is an integer representing the total number of bytes in the request.

2) Op Code is a number specifying the desired operation following this table

Operation

*

/

|

&

-

+

OpCode

0

1

2

3

4

5

3) Operand  1 is a signed number making the first operand

4) Operand 2 is a signed number making the second operand

5) Request ID is the request ID. This number is generated by the client to differentiate requests. You may use a variable randomly initialized and incremented each time a request is generated.

6) Op  Name Length is the length in bytes of the operation name (see below what the Operation Name is).  Pay attention: the length is the number of bytes used to encode the string. Recall that some encoding schemes use two bytes per character.

7) Op   Name is   name   of   the   requested  operation:   "addition",   "subtraction",  "or",  "and",  "division",  and "multiplication". The Op Name string must be encoded using "UTF- 16BE".

Operands are sent in the network byte order (i.e., big endian).

Hint: create a class object Request like "Friend", but with the fields needed for a request ...

Below are two examples of requests. Bytes in the array are hexadecimal numbers.

Request 1: suppose the Client requests to perform the OR operation 240 | 4: (This is the 5th request) (240) 10  = 0xF0 and (4) 10  = 0x04. We omit the “0x” prefix for each byte expressed in hexadecimal.

11 02 00 00 00 F0 00 00 00 04 00 05 04 0**F 00 72

Request 2: suppose the Client requests to perform the operation 227 &  183  (if this is the  12th  request):

13 03 00 00 00 E3 00 00 00 B7 00 0C 06 0**1 0**E 0**4

The Server will respond with a message with this format:

Total Message Length (TML)

Result

Error Code

Request ID

one byte

4 byte

1 byte

2 byte

Where

1) TML is the Total  Message Length (in bytes) including TML. It is an integer representing the total numbers of bytes in the message.

2) Result is the result of the requested operation

3) Error Code is 0 if the request was valid, and 127 if the request was invalid (Message length not matching TML)  4) Request ID is the request ID. This number is the number that was sent as Request ID in the request sent by the

client. This will allow the client to match the results to the appropriate request.

In response to Request 1 (240 | 4) below

11 02 00 00 00 F0 00 00 00 04 00 05 04 0**F 00 72

the server will send back: (. We omit the “0x” prefix for each byte expressed in hexadecimal. )

08 00 00 00 F4 00 00 05

In response to Request 2 (227 &  183 ),

13 03 00 00 00 E3 00 00 00 B7 00 0C 06 0**1 0**E 0**4

the server would send back:

08 00 00 00 A3 00 00 0C

a) Repetitive Server: Write a datagram Calculating Server (ServerUDP.xxx). This server must respond to requests as described above. The server must bind to port (10010+TID) and could run on any  machine  accessible  on the  Internet. TID is  your  Canvas  team  #. The  server  must  accept  a command line of the form: prog ServerUDP portnumber where prog is the executable, portnumber is the port the server binds to. For example, if your Team ID (GID) is Team  13 then your server must bind to Port #  10023.

Whenever a server gets a request, it must:

i.   display the request one byte at a time in hexadecimal (for debugging and grading purpose)

ii.   display the request in a manner convenient for a typical Internet user: the request ID and the request (operands and required operation)

b)   Inplement a datagram client (ClientUDP.xxx)

i.   Accepts a command line of the form: prog ClientUDP servername PortNumber where prog is the executable, servername is the servername, and PortNumber is the port number of the server. Your program must prompt the user to ask for an Opcode, Operand1 and Operand2 where OpCode is the opcode of the requested operation (See the opcode table). Operand1 and Operand2 are the operands. For each entry from the user, your program must perform the following operations:

ii.   form a request as described above

iii.   display byte per byte in hexadecimal the request that will be sent

iv.   send the request to the server and wait for a response

v.   display the server’s response byte per byte in hexadecimal (for debugging and grading purpose)

vi.   display the  response of the server  in a manner convenient for a typical Internet user: the request ID, the response and the error code (display Ok when error code is 0)

vii.   display the roundtrip time (time between the transmission of the request and the reception of the response)

viii.   prompt the user for a new request. (Use some way to allow a client to quit. Just be explicit about how to quit)

To implement the server, you should consider (optional) starting with the Friend code. If you implement a successful server in a language different from Java, you will get 5 points Bonus points. For the language other than Java, the only constraint is that it must already be installed on Tux machines. Check the Tux machines for your chosen language before you start implementing.

Your code must be neat and pleasant to read. Comment the code appropriately. If starting from some  other  code, delete all   unnecessary   instructions (do not  just comment  out the   unnecessary instructions). A code not neat or pleasant will be penalized up to -30 points.

Data collection and analysis

For the client, report separately the min, average, and max round trip time. Include screenshots of your client and server executing on the Tux machines. Screenshots on machines other than the Tux machines will not receive any credit. To receive any credit, the screenshots must clearly show the Tux machine name, the username of one of the classmates, and the date. In other words, if any information (username, date, or tux machine name) is missing, the assigned credit for the assignment will be 0. You must have two screenshots: one for the server and one for the client. Here is a screenshot containing the Tux machine, a username, and a date. Avoid screenshots too small. If screenshots are not easily and conveniently readable, they will be considered missing. Screenshots must be easily and conveniently readable.



How to get started?

1) Download all files (UDP sockets) to run the "Friend" application used in Module 2 to illustrate how any class object can be exchanged: Friend.java, FriendBinConst.java, FriendEncoder.java, FriendEncoderBin.java, FriendDecoder.java, FriendDecoderBin.java, SendUDP.java, and RecvUDP.java.

2) Compile these files and execute the UDP server and client. Ensure they work.

3) Create a new folder called Request and duplicate inside it ALL files related to the Friend class object     4) Inside the Folder Request, change ALL occurrences of "Friend" with "Request" including the file names. 3) Adapt each file to your application. Replace the fields used by Friend with the fields used by a request.

4) Aim to have the client send one request and have the server understand it (just like what we did with a friend object).

5) When your server will receive and print out correctly a request, then you need to send back a response... 6) Create a class object Response....

Report (a missing report incurs a 30 points penalty)

.     Write a report that will report your results..

.     Your report must contain the following information:

o  whether the programs work or not (this must be just ONE sentence)

o  the directions to compile and execute your programs

o  the information this assignment asks you to report (minimum, average, and maximum round trip times) and the

required screenshots of the execution of the client and server. To receive any credit, the screenshots must clearly show the Tux machine, the username of one of the classmates, and the date. To get the date, just run the command date before executing your programs. Each missing or incomplete screenshot will result in a 50 points penalty.

What you need to turn in:

.      Electronic copy of your source programs (standalone, i.e. NOT in a zipped folder)

.      Electronic copy of the report (including your answers) (standalone, i.e. NOT in a zipped folder). Submit the file as a Microsoft Word or PDF file.

. In addition, put all files in a zipped folder and submit the zipped folder.

Grading

1) Client is worth 40% if it works well:

a) meets the protocol specifications (20%) and the user interface ( 10%)

b) communicates correctly with YOUR server (10%). Furthermore, screenshots of your client and server running on Tux machines must be provided. The absence of screenshots or Screenshots on machines other than the Tux machines will incur 50 points penalty per missing screenshot

2) UDP client is worth  10% if it works well with a working server from any of your classmates.

The server is graded the same as the client (30% +  10% +  10%).
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:代寫3D printer materials estimation編程
  • 下一篇:代寫 Behavioural Economics ECON3124
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    丁香六月激情婷婷| 久久久久亚洲精品| 人妻久久久一区二区三区| 国产精品视频免费在线观看| 国产精品视频一区二区三区经| 女同一区二区| 欧美精品aaa| 麻豆av一区二区三区久久| 91高清免费视频| 日本中文字幕一级片| 国内精品国产三级国产在线专 | 热久久免费视频精品| 亚洲高清乱码| 91精品国产91| 欧美高清性xxxxhd| 男人天堂av片| 97免费视频在线播放| 成人国产一区二区| 国产成人在线视频| 精品视频一区二区| 久久久在线观看| 久久福利视频网| 日韩精品xxxx| 性日韩欧美在线视频| 国产伦精品一区二区三区视频孕妇| 国产黄色片免费在线观看| 国产精品96久久久久久 | 日韩欧美在线播放视频| av 日韩 人妻 黑人 综合 无码| 伊人久久av导航| 欧美日韩一区二| 91精品国产高清自在线看超| 久久亚裔精品欧美| 成人免费aaa| 国内精品400部情侣激情| 91免费国产精品| 黄页网站在线观看视频| 日韩精品一区二区三区色欲av| 国产精品国产精品国产专区蜜臀ah | 欧美日韩精品中文字幕一区二区| 国产成人啪精品视频免费网| 69av在线播放| 国产精品一区二区三| 久久综合久久久| 国产精品久久久久久久天堂| 国产精品99久久久久久白浆小说| 久久久精品国产| 国产精品av在线播放| 国产精品一 二 三| 久久亚洲精品成人| 国内一区在线| 久久国产精品-国产精品| 蜜月aⅴ免费一区二区三区| 不卡毛片在线看| 日韩综合视频在线观看| 狠狠色综合一区二区| 7777精品久久久久久| 亚洲bt天天射| 午夜精品久久久久久99热软件| 91精品国产91| 国产一区二区视频播放| 国产中文日韩欧美| 精品视频一区二区| 国产白丝袜美女久久久久| 美日韩精品免费观看视频| 欧美性资源免费| 欧美一区二区三区四区在线观看地址| 久久精品国产一区二区电影| 欧美日韩一区二区三区电影| 国产精品96久久久久久又黄又硬| 日韩av免费在线播放| 麻豆成人av| 91精品视频免费看| 性视频1819p久久| 伊人久久大香线蕉av一区| 色综合久久天天综线观看| 欧美日韩国产精品一区二区| 国产mv久久久| 亚洲xxxx在线| 国产精品美女免费看| 日本免费一区二区三区视频观看| 国产精品爽爽爽爽爽爽在线观看| av色综合网| 国模精品娜娜一二三区| 欧美二区在线看| 91精品国产91| 日本不卡一区二区三区四区| 久久综合免费视频| 国产精品日韩久久久久| 91精品国产91久久久久福利| 精品少妇人欧美激情在线观看| 麻豆av一区二区三区久久| 亚洲综合欧美日韩| 欧美日韩精品综合| 国产精品久久久久久久久久久久冷| 99久re热视频这里只有精品6| 色婷婷综合久久久久中文字幕| 欧美专区一二三| 美女av一区二区| 国产乱子夫妻xx黑人xyx真爽| 免费99精品国产自在在线| 久久综合伊人77777尤物| 国产成人一区二区三区电影| 午夜精品久久久久久久99热| 日韩一区二区三区高清| 五月天亚洲综合情| 狠狠色综合网站久久久久久久| 国产a级片免费看| 欧洲精品在线视频| 亚洲日本理论电影| 国产女主播av| 欧美一区二视频在线免费观看| 日韩无套无码精品| 性色av一区二区三区| 亚洲蜜桃av| 国产精品久久久久久久久久东京| 国产精品久久久久久久久免费| 久久久精品久久久| 成人乱人伦精品视频在线观看| 精品少妇人欧美激情在线观看| 日韩在线视频免费观看| 欧美精品电影在线| 久久精品视频91| 久久久伊人日本| 116极品美女午夜一级| 成人久久18免费网站漫画| 国产成人精品免费看在线播放| 亚洲精品国产精品国自产观看| 亚洲va久久久噜噜噜久久狠狠| 日本精品久久久久久久| 午夜精品一区二区三区四区 | 国产成人亚洲欧美| 国产精品com| 国产精品无码一区二区在线| 日韩wuma| 国产免费一区二区三区视频| 久久久免费观看视频| 久精品国产欧美| 91精品国产网站| 日韩视频免费观看| 一区二区三区电影| 一区二区视频在线观看| 国产精品视频99| 日韩免费在线看| 久久精品色欧美aⅴ一区二区| 久久99精品久久久久久三级| 久久久人人爽| 久久99精品久久久久久久久久| 九九久久99| 色噜噜狠狠色综合网| 久久久精品国产一区二区| 激情综合在线观看| 国产一区 在线播放| 欧美精品福利在线| 99精品国产高清在线观看| 成人免费a级片| 久久久久久久久久亚洲| 国产精品色视频| 日韩欧美一区二区三区四区五区| 91.com在线| 亚洲aa中文字幕| 91精品视频专区| 国自在线精品视频| 国产精品视频免费在线观看| 国产欧美日韩伦理| 免费av在线一区| 不卡视频一区二区| 国产成人精品日本亚洲11| 美女视频久久黄| 日韩一区av在线| 国产aⅴ夜夜欢一区二区三区| 日本欧美黄网站| 国产一区视频在线| 久久er99热精品一区二区三区| 久久久精品日本| 日韩av中文字幕第一页| 国产有码在线一区二区视频| 日韩在线综合网| 国产精品手机播放| 国产伦理久久久| 日本一区高清在线视频| 热久久免费视频精品| 国产美女精品视频| 国产精品手机视频| 国产乱码一区| 国产精品少妇在线视频| 久久久久天天天天| 久久久亚洲精品视频| 蜜桃传媒一区二区| 色综合91久久精品中文字幕 | zzijzzij亚洲日本成熟少妇| 亚洲中文字幕无码一区二区三区| 亚洲一二三区在线| 国产精品美女久久久久久免费| 亚洲免费久久| 国产成一区二区| 男人的天堂99| 国产精品第七十二页| 成人国内精品久久久久一区| 日韩精品一区二区三区电影|