ASSIGNMENT:
Modify the simple web server so that all the urls that start with the token "process "
(e.g. http://localhost:8000/process)
launch an external process.
For instance,
http://localhost:8000/process/add?op1=1&op2=2
should activate an (external) process that sums 1 and 2 and returns a web page containing the value 3.
To see how to start an external process from Java, take a look at
http://www.rgagnon.com/javadetails/java-0014.html
Deadline Sept. 25, 2015
You have to deliver:
- source code
- a report.
The report must have the following structure:
to : marco.ronchetti at unitn.it
with subject: WEBARCH - 1st WEEK ASSIGNMENT DELIVERY
Modify the simple web server so that all the urls that start with the token "process "
(e.g. http://localhost:8000/process)
launch an external process.
For instance,
http://localhost:8000/process/add?op1=1&op2=2
should activate an (external) process that sums 1 and 2 and returns a web page containing the value 3.
To see how to start an external process from Java, take a look at
http://www.rgagnon.com/javadetails/java-0014.html
Deadline Sept. 25, 2015
You have to deliver:
- source code
- a report.
The report must have the following structure:
- Title Page
- containing date, title (Extending the simple web server), your name)
- Introduction
- Implementation
- Describe how you implemented the solution
- Deployment
- Short description of how to run your code
- Comments and notes (optional)
- any problems encountered during the project development
- Any other comment
to : marco.ronchetti at unitn.it
with subject: WEBARCH - 1st WEEK ASSIGNMENT DELIVERY