Web Application project, don't know how?
Hi,
I'm doing a web application project that requires users to submit document files and images after have filled up a form. Users are also able to download some files from the web application. My web application server setting,
Client IE/Netscape browser (os used is Win XP)- connect to the web server only.
Web Server - running tomcat - servlet
Application Server - all the business logic
Database server - MS SQL 2000
File Server - file storage.
The following are my requirements:
1. Web Server cannot contain application/business logic, in there only contains HTML, JSP and others front end codes.
2. All business logic (in Java classes) must be in Application Server (back end codes).
3. All users document submission must be in the file server.
4. Use MVC model 2.
My question:
1. How do I make my servlet to call objects, where the object is in another server?
2. How to upload the files from the client to the file server?
3. How to download files from the client browser?
Thank you.

