首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
辅导program程序、讲解data编程、SQL编程辅导 调试Matlab程序|解析Haskell程序
项目预算:
开发周期:
发布时间:
要求地区:
VU College Page 1 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
COURSE Diploma of Information Technology (VDIT)
UNIT OF STUDY VIT1204 – Web App & Server Management
ASSESSMENT TITLE Assessment 2 - Assignment
ASSESSMENT TYPE Assignment Case Study
Instructions Weighting This assessment is worth 30% of your final result for this unit of study
Due Date Refer to Assessment Information for Submission Deadline
You must put your name and VU student ID on all items submitted for assessment.
Resources required
• XAMPP running Apache server
• NetBeans IDE that supports PHP projects.
• Database SQL script to create the database and records
• Composer (Dependency Installer)
• Project Support Resources: HTML Template files, Bootstrap Components, Images
Learning materials, Lab documents, tutorials and Videos on VU Collaborate.
Development Strategy
• Part 1 – Develop the User Interfaces
• Part 2 – Develop the Database CRUD capabilities
• Part 3 – Develop the RESTful services
• Part 4 – Deploy REST Client and Server Applications
Description of Task
In this Assessment task you will be required to develop a Mobile Backend as a Service (MBaaS) to
provide cloud data services for mobile Apps (Simulation Only). The Web application will provide
RESTful web services for clients. To demonstrate the functionality, you will also be required to build a
Client Application that is able to communicate with the Server Application.
Date Group/Class
First Name Last Name
VU Student Number Allocated Case Study
VU College Page 2 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
The Backend Web Server and Client Application can be installed on your local machine to test the Web
Service.
This assignment case study consists of two projects.
• REST Server: Develop the Web Service Application
• REST Client: Develop the Client Application.
REST Server Application
You are required to develop a Representational State Transfer (REST) web service. The web service
must be implemented using the following technologies and resources:
• Apache Web Server
• PHP Language
• MySQL Database
• SLIM 3 Web Framework
REST Client Application
You are required to develop a REST Client Application to interact with the REST Server. The Client
Application must be implemented using the following technologies:
• Apache Web Server
• PHP Language
• GUZZLE HTTP Client Framework
• TWIG Template Engine
Your solutions will consist of 2 zipped PHP Projects. Name you projects as follows:
• RESTServer
• RESTClient
VU College Page 3 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
REST Server Application - Task Details
The REST Server Application provides Restful API services to client applications. REST Client apps
should be able to read (and search) data by communicating with the REST Web Service.
Requirements:
The Server application should be able to respond to your Client Application to provide the following
services:
• Return all records from the data table in the database. Response must be in JavaScript Object
Notation (JSON) format containing the resulting records.
• Create (insert) a new Contact record in the data table in the database. Response must be in
JavaScript Object Notation (JSON) format containing a success or failed to insert message.
• Return selected records based on keyword search from data table in the database. Response
must be in JavaScript Object Notation (JSON) format containing the resulting records.
REST Client Application - Task Details
The REST Client Application provides users with an HTTP Client to communicate with the REST
Server to perform the CRUD operations.
Requirements:
The Client application should be able to provide users with the following services:
• Display a professional home page with menu navigation, forms and tables style on the Bootstrap
CSS framework. Display Menu links: Home, View Records. Add record and Search Records
• View Records: Communicate with the REST Server to retrieve all records and display the records
in a professionally formatted table. The table should the display the images associated with each
record (image files are stored locally on client).
• Add Record: Display the Add Record Form. After form submission with valid data, communicate
with the REST Server to add the new record. Display the response the success or failed to add
record message.
• Search Records: Display the Search Form. After form submission with valid data, communicate
with the REST Server to retrieve matching records and display the records in a professionally
formatted table. The table should contain links to edit or delete each record.
VU College Page 4 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
Web scripting requirements:
Server side and client side programming must be implemented using PHP and PHP Frameworks.
Your solution should be consist of two NetBeans projects named RESTClient1234567 and
RESTServer1234567 where the seven digits represent your student id. The NetBeans projects should
contain the following web directory structures:
Server Application Files
The URL for calling the REST Server should be in the format of:
http://localhost/RestServer1234567
Image Files
Image files associated with each record do not have to be uploaded to the Server application. They
are to be stored locally on Client Application in the static folder. The Server application database
stores the image filename. The Client Application will retrieve the records from the Server
Application and subsequently use the image filename to load the image locally.
RestServer1234567 is your NetBeans project folder.
App folder contains the RESTServerDB class and RouteAction
PHP class files.
The migration folder contains database SQL file to create and
seed the database in MYSQL.
The static folder contains any images used for the webpages.
The templates folder contains the HTML template files used
for the PHP Views.
The vendor folder contains the installed PHP Frameworks
The config.php file is usually included in the home index page.
It should contain any initial set up configurations required by
your project e.g. Include Path.
The index page contains PHP script to delegate route actions
based on request URIs received.
The .htaccess file is provided to you. This file contains settings
for Apache to rewrite URLs to default to the index page.
The composer files are auto generated at installation of PHP
Frameworks.
ClientApp1234567 is your NetBeans project folder.
App folder contains the RequestAction PHP class file.
The static folder contains any images used for the webpages.
The templates folder contains the HTML template files used
for the PHP Views.
The vendor folder contains the installed PHP Frameworks
The config.php file is usually included in the home index page.
It should contain any initial set up configurations required by
your project e.g. Include Path.
The index page contains PHP script to delegate request
actions based on user link selection.
The composer files are auto generated at installation of PHP
Frameworks.
VU College Page 5 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
PHP Classes
Your solution must implement PHP classes to provide data service and business logic for you web
application. Use the following class diagrams to help you design your own PHP classes.
Replace the word Record with your Case study entity (table) name.
The following diagram represents the Classes for the REST Server implementation
The following diagram represents the Classes for the Client Application implementation:
RecordsDB
__construct()
getRecords()
searchRecords($keyword)
RouteAction
__construct()
index($request, $response, $args)
getRecords($request, $response, $args)
searchRecords($request, $response, $args)
$pdo $dbtable
$view
RequestAction
__construct()
index()
viewRecords()
searchRecords()
$client
$view
VU College Page 6 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
Database Schema
You will be provided with the SQL script file to create this database with sample records and the
photo images. The following diagram should represent the data table in your database. Complete
the Entity Diagram for your allocated case study. You must rename all the menu links for the request
actions and all the functions in your defined classes.
You will not be required to upload images from your Client Application to the REST Server application.
The REST Server is not required to be a content/image server. Instead, images should be stored locally
on your Client Application.
Create the database in MySQL via XAMPP:
Import the SQL script for your allocated case study in MySQL via PHP Admin Page.
.
Deployment
Local PC
REST Client
Application
XAMPP
AWS Server
REST Server
Application
Apache
MySQL PHP
HTTP REQUESTS
HTTP RESPONSES
Simulation
VU College Page 7 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
Assessment Authenticity
You will need to show your work to your teacher prior to submission. You must be able to explain
your code to your teacher. The work must be your own. You are free to use any learning materials
and resources provided in the subject to assist in developing the code for this assignment.
PLAGIARISED WORK WILL EARN ZERO MARKS.
You will be required to use a Versioning Control Service (GIT) to track and log progressive changes
to your project. Your GIT repository must be able to produce a history of version changes.
Assessment Submission
You are required to upload two NetBeans projects that includes your required directory structure,
PHP, CSS, images, and other supporting files as compressed archives (.zip or .rar).
The submission must be uploaded via Drop Box on VU Collaborate. Refer to Assessment Information
in the VU Collaborate space for the submission deadline.
VU College Page 8 of 8
Assessment 2 – Assignment Case Study
Date: 4/12/2020
Author: Stefan Batsas
File: VIT1204 Assessment 2 - Assignment Case study Henan Delivery v1.docx
Rubrics
Your assessment will be graded according to the following breakdown:
Assessment Criteria Maximum
Marks
Given
Marks
Use the PHP language to develop dynamic web pages
Use web frameworks to enhance the features of web applications
Use of a CSS Framework (e.g. Bootstrap) to provide a professional and consistent theme over all of the
webpages generated by the Client Web Application.
Home Page, Search Form Page, Add Form page, View Records Page (1 mark each for consistently styled pages)
4
Menu Links added to navigation bar on Client Home Page – Home, Add Record, View Records, Search Records
(0.5 mark each for operational link) 2
Evidence of PHP Views framework implemented. (Index, Base, Data, Add Form, Search Form = 5 templates x
1 mark each) 5
Evidence of PHP Framework implemented to provide HTTP Client functionality – 4 Request Actions x 1 mark
each 4
Evidence of PHP Framework implemented to provide REST functionality – 4 Route Actions x 1 mark each 4
Correct implementation of REST concepts – URIs naming conventions (4 URI x 1 mark each) 4
Correct implementation of REST concepts – HTTP request methods (4 Routes x 1 mark each) 4
Apply object-oriented programming in the development of web applications.
Allow user to insert a new record with REST Client App:
Evidence of PHP HTTP Client using the appropriate requests to the REST Server 2
Evidence of PHP REST Server inserts record into database 3
Responses are in JSON Format and the correct response is returned to the client 1
Allow user to search records by keyword with REST Client App:
Evidence of PHP HTTP Client using the appropriate requests to the REST Server 1
Evidence of PHP REST Server searches records from database 2
Responses are in JSON Format and the correct response is returned to the client 1
Display of all records including images of all selected records 2
Allow user to display all records with REST Client App:
Evidence of PHP HTTP Client using the appropriate requests to the REST Server 1
Evidence of PHP REST Server retrieving all records from database 1
Responses are in JSON Format and the correct response is returned to the client 1
Display of all records including images of all records 2
Evidence of correct OOP code structure
The PHP classes are implemented as per Class Diagrams on Client and Server Application – RequestAction
class, RouteAction class and RestServerDB class. (3 classes x 1 mark each)
3
The functions in RequestAction defined correctly and produce correct results (4 functions x 1 mark each) 4
The functions in RouteAction defined correctly and produce correct results (4 functions x 1 mark each) 4
The functions in RecordsDB defined correctly and produce correct results (4 functions x 1 mark each) 4
Evidence of Case Study Database imported into MySQL 1
Total Marks 60
Weighted Result 30
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!