0% found this document useful (0 votes)
13 views7 pages

IWS Spring 2025 - Final Project Requirement

The final project for the Internet and Web Services course requires students to create web services and a client application using RESTful API, with a focus on legal content. Students must implement functions for data retrieval and manipulation, using any programming language and database of their choice, while ensuring a user-friendly interface. The project has specific submission guidelines, evaluation criteria, and deadlines, with interviews scheduled for April 28, 2025.

Uploaded by

ilovebhgaming
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views7 pages

IWS Spring 2025 - Final Project Requirement

The final project for the Internet and Web Services course requires students to create web services and a client application using RESTful API, with a focus on legal content. Students must implement functions for data retrieval and manipulation, using any programming language and database of their choice, while ensuring a user-friendly interface. The project has specific submission guidelines, evaluation criteria, and deadlines, with interviews scheduled for April 28, 2025.

Uploaded by

ilovebhgaming
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

INTERNET AND WEB SERVICES – SPRING 2025

FINAL PROJECT DESCRIPTION

1. Overview
For the final project, you have to create web services and the client
application/website consuming the created services using RESTful API. The
content of your web services and client application/website are not mandatory,
you can create for any purpose you want (some suggestions are news website,
personal blog, ecommerce, education…). However, illegal contents (betting,
porn, drug, weapon…) are not allowed.
In details, you have to create 2 things:
a) Create the web services.
Web services provide functions to interact with information in your database.
b) Create a client application that consumes the web services created in the
previous part.
Client can be web application or mobile application. Windows form
application is also accepted but web application or mobile application are
better choices for the purpose of this project.
2. Requirements
a) Function
- For the API, your services must provide functions to show information from
the database (in another word, using GET method) and upload new information
to the database (in another word, using POST method), update information
(PUT method) and delete (DELETE method).
- For the client application, it must consume successfully all services you have
created. The returned information must be displayed correctly and users can
also submit new information to your database, update and delete them (for
example, if you create a news website, it should allow users to post their
comments).
b) Programming language
You can use any programming language (PHP, Java, JavaScript, Python…),
depends on your knowledge and the experience on working with the selected
language. For the database, SQL and NoSQL are both accepted.
Using libraries and frameworks of the programming languages is also
accepted.
c) Interface of client application
Your application/website should have user-friendly interface which make user
feel comfortable while using.
For teams who create website, it should be carefully responsive.
d) Team member
 For IT student: 2 – 3 members/group
 For MME student: 4 – 5 members/group
e) Submission date
11.59pm, April 27, 2025
f) Interview date
April 28, 2025 – 2 sessions: 1 for IT groups and 1 for MME groups

SUBMISSION FORMAT:
You need to put your source code along with personal report of all team members
inside a zip file with the file name as following format (wrong name and file
format will receive 0 point):

 For IT group: FinalProjectIWS2025IT – Group Number.zip


 For MME group: FinalProjectIWS2025MME – Group Number.zip

Example:

 IT group: FinalProjectIWS2025IT – Group 6.zip


 MME group: FinalProjectIWS2025MME – Group 8.zip

For further details, please read the Appendix A and B below. If you have any
question, please feel free to contact with your teacher during lecture/tutorial
classes or through Teams and email.

Good luck and try your best!

APPENDIX A: DETAIL EVALUATION CRITERIA


(FOR REFERENCE)

There will be 4 main ranges of point: Fail, Pass, Merit, Excellent.


For the FAIL range:

 Follow the wrong architecture (for example: MVC, MVT, SOAP… = Fail)
 Not submit project on time (-30% total mark for late submission)
 Not attend interview session
 Submit wrong file format (in this case is .zip file)
 Copy code from other sources (will be checked with detection system)
For the PASS range:

a) Backend Requirement
 For MME students’ projects, backend must provide basic services to
Get the information from database through GET method then
return the output in JSON/XML format and Receive input from user
then submit data and save to the database through POST method.
These function must work properly and return the correct output
format as expected output for each function/service. The testing work
must be done using Postman. For IT students’ projects, backend must
provide full create, read, update, delete functions.
 In case your group decide to use serverless system or related
technologies such as Firebase, Realm, GraphQL…, remember that the
main purpose of this project is to create RESTful API so be really
careful when using it. It is accepted, but may be a problem if you
don’t understand and don’t meet the requirements.
 For the database, it is acceptable to create it in your local machine or
use the cloud platform. However, it must be connected successfully to
your backend system. Fail to connect means fail the project. For the
database type, you can choose either SQL or NoSQL.
b) Frontend Requirement
 About working process/consuming services performance: The
web/application can consume the backend services through API to
display information from database to the user, along with forms or
other types of getting input from user to collect and save to database
without any errors (for further detail, you also need to handle the
problem may happen with CORS policy). In another word, user can
interact with your backend system as well as the database to read and
write information by using your webpage/application which had been
linked through APIs you had created in the backend part.
 About product interface: Your webpage/application must have user-
friendly interface - not having any problems with font type, font size,
color of text and background which may affect user experience. Every
picture/image, button and icon must be displayed without any error.

For the MERIT range:

Include all requirements of PASS range along with following additional


requirements:

a) Backend Requirement
For MME students’ projects, in addition to two mandatory
functions/services described in the previous part; to get the mark in this
range, you need to design and implement services to handle the Update
database with information input/submitted from user through PUT/POST
method and Delete information saved in the database through DELETE
method.
Register – Login – Forgot password using/without using encryption will
be considered as additional requirement for MME student and mandatory
for IT student.
b) Frontend Requirement
 Instead of just using natural HTML, CSS, JavaScript code (for
webpage), you are able to use additional libraries and frameworks (for
example: Bootstrap, TailwindCSS… or some frameworks/libraries for
frontend development: ReactJS, VueJS, Angular…). For mobile
application, instead of just using drag-and-drop Java
frameworks/libraries, you are able to use other programming
language/frameworks/library such as Flutter, React Native, Kotlin,
Swift…
 For web product: Your webpage must be responsive and there is
no/small display error when testing responsive with different
devices/resolution. In case you separate your webpage into several
parts (for example: header, body, footer…), make sure they are
displayed correctly in order as implemented in the code files.
 For mobile app: In case your application contains several child
widgets/parts, make sure they are displayed correctly in order as
implemented in the code files. Moreover, make sure that the
application still run smoothly when changing between screen and
scrolling up-down.

For the EXCELLENT range:

 Include all requirements of MERIT range


 Good structure of code, coding convention, naming convention
 Good presentation and showing your good understanding about
languages/frameworks/libraries/technologies used in your project and be
able to answer almost all questions from other teams and the interviewers.

APPENDIX B: WHAT NEED TO BE INCLUDED IN


YOUR PERSONAL REPORT?
1. Your personal information: Student Name – Student ID – Class Name –
Group Number
Example: Tran Ngoc Khoa – 1801040121 – 1C18 – Group 6
2. Overview of your group project:
 What is it about?
 What are main functions/services of the product?
 Which technologies (programming language/libraries/frameworks) are
used in your group project?
3. Your personal work in the group project:

Include following content to represent your contribution to your group work:

 Which parts you had done in the group project? Explain it


carefully.
In case many people working together in your parts, refer them
carefully in the paper or else it will not be accepted.
 Which technologies you had used to finish your parts?
 Provide screen captures of testing result (for backend part) or
webpage/application interface (for frontend part) or even the
database depending on parts you had done in group work.
It is mandatory, you will be reducing 60% mark of the personal
report if not providing screen captures inside your paper.

You might also like