aspose file tools
The moose likes Servlets and the fly likes Client - Server Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Client - Server " Watch "Client - Server " New topic
Author

Client - Server

Dilip kumar
Ranch Hand

Joined: Oct 16, 2000
Posts: 360
Hi,
Sometimes I really get confused with the meaning on "server" when somebody refers to "client-server" in the java environment.
I really appreciate some light on "server".
Thanks
Travis Gibson
Ranch Hand

Joined: Oct 17, 2000
Posts: 100
In a nutshell client/server is broken down as follows:
1.) Client - The machine making the request (i.e. You when the URL for www.javaranch.com is typed in the address field of your browser and then you press enter.)
2.) Server - The machine that processes the request and returns data to the Client. (i.e. www.javaranch.com returns it's homepage based on your request).
They are often referred to as N-tiers. Java Servlets and JSP are basically mid-tier between the two.
Please correct me if I am wrong,
Travis M. Gibson
SCJP


Regards,<BR>Travis M. Gibson, SCJP<BR>Java Developer<BR>www.travismgibson.com<BR>travis@travismgibson.com
Vladan Radovanovic
Ranch Hand

Joined: Mar 20, 2000
Posts: 216
Travis is correct however You should think of it in terms of "software".
Server is software(program) running on some computer that provides services to other software/programs.
Often the computer that a server software runs in is reffered as "server".
For example Web "server" is software that is running on some computer and awaits and accepts calls from "clients" and serves them HTML pages.
Vladan
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Client - Server
 
Similar Threads
update, create, delete method
Testing Server Programs w/ only one VM
JDBC 2.0 And DB2
Stub/ Skeleton
What is next with NetBeans Thick Clients?