https://github.com/riccardopersiani/dp2-lab3
Implementation of a Java Web Service for the Distributed Application II exam at Technical University of Turin
https://github.com/riccardopersiani/dp2-lab3
java tomcat xml xml-parser
Last synced: about 1 year ago
JSON representation
Implementation of a Java Web Service for the Distributed Application II exam at Technical University of Turin
- Host: GitHub
- URL: https://github.com/riccardopersiani/dp2-lab3
- Owner: riccardopersiani
- Created: 2016-12-19T13:37:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-06T23:16:40.000Z (about 7 years ago)
- Last Synced: 2025-02-14T21:48:35.752Z (over 1 year ago)
- Topics: java, tomcat, xml, xml-parser
- Language: HTML
- Homepage:
- Size: 42.8 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## __Distributed Programming II A.Y. 2016-17__
### Assignment n. 3 - Part B
This archive includes:
- README This file
- `Assignment3a.pdf` The text of Assignment 3 - Part a
- `Assignment3b.pdf` The text of Assignment 3 - Part b
- `build.xml` The ant script for this assignment
- `tomcat-build.xml` The ant script for tomcat-related targets (included by build.xml)
- `custom` The location of custom files
- `doc` The folder where you have to put the documentation of your design.
- `lib` The location of the jar files necessary for this assignment
- `lib-src` The location of library sources (to be attached to the
corresponding lib jar files in eclipse)
- `src` The location of source files
- `WebContent` The folder including the files used for the deployment to Tomcat
- `war` The location of the .war file of the Neo4JXML service and of the
.war file that will be generated
- `xsd` The location of your schema files
Setting the work environment for the project
--------------------------------------------
After Tomcat installation, set the Tomcat-related properties in `tomcat-build.xml`.
You can create a single eclipse java project for this package and then add the
jars under lib to the build path. It is also suggested to attach the sources
available in lib-src to the corresponding jar library.
DO NOT USE `tomcat-build.xml` directly. Instead use the `build.xml` (which imports it).
Start tomcat by running the start-tomcat target
(from `build.xml`).
The other instructions for using build.xml are included in the assignment text.