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.

[1095 byte] By [wongtt78] at [2007-9-30 20:40:04]
# 1

> My question:

> 1. How do I make my servlet to call objects, where the

> object is in another server?

I highly doubt this is the actual requirement. Read more carefully

> 2. How to upload the files from the client to the file

> server?

http://www.faqs.org/docs/htmltut/forms/_INPUT_TYPE_FILE.html

> 3. How to download files from the client browser?

>

You already know how to download files, you should already be doing it with html files.

dmbdmb at 2007-7-7 1:29:12 > top of Java-index,Java Essentials,Java Programming...