answersLogoWhite

0


Best Answer

the server is a process that can resite of same machine as a client or on a different machine the client software usually the location of the server from client by redirecting the service.....(upload by vams)

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does Transparency of Location mean in Client Server model?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which classes are used in java to create client server model?

we use sockets for client server model..


A computer on a network that requests resources from a server?

The computer on a network that requests resources from the server is called the client. The server may also be used to implement administrative security for the client computers.


What are the client server model and Give 3 examples of services on Linux systems that take advantage of this model?

FTP, NFS, DNS, email, and HTTP (the web browsing protocol) all rely on client server model.


Differences between client server and time sharing computer?

Time sharing computer refers to the sharing of computing resources among various computers while the client server is a mainframe computer operates in a timesharing mode to provide for the needs of the many users.


What is clien or server mean?

Client/server describes the relationship between two computer programs in which one program, the client, makes a service request from another program, the server, which fulfills the request. Although the client/server idea can be used by programs within a single computer, it is a more important idea in a network. In a network, the client/server model provides a convenient way to interconnect programs that are distributed efficiently across different locations. Computer transactions using the client/server model are very common.


The majority of Internet communications follows the model of network communications?

Client / Server


How does a communications server work?

A communications server works by connecting the server and the client through streaming. A good communications server should have a powerful programming model.


How does a commune work?

A communications server works by connecting the server and the client through streaming. A good communications server should have a powerful programming model.


Which computer network model allows each computer to act as a client or server?

The Peer-to-Peer networking model.


Explain the different between peer to peer and client server configuration?

In Peer to peer the machines work as a workgroup machines and can access each other and they process themselves but in client server model all the requests of clients are sent to server it processes the request and send the result to client


The is often referred to as the front end of the clientserver model and the is referred to as the back end?

Client Server


Expain client server model?

The client/server model is a computing model that acts as distributed application which partitions tasks or workloads between the providers of a resource or service, called servers, and service requesters, called clients.[1] Often clients and servers communicate over acomputer network on separate hardware, but both client and server may reside in the same system. A server machine is a host that is running one or more server programs which share their resources with clients. A client does not share any of its resources, but requests a server's content or service function. Clients therefore initiate communication sessions with servers which await incoming requests.Schematic clients-server interaction.The client/server characteristic describes the relationship of cooperating programs in an application. The server component provides a function or service to one or many clients, which initiate requests for such services. A notable example of this is the way OpenGLtreats the video card of a computer as a server, with the actual application making rendering requests to it. This model is further solidified with the OpenGL Shading Language, with the user writing small programs that live in video memory, and are requested from the main program through the graphics driver.Functions such as email exchange, web access and database access are built on the client/server model. Users accessing banking services from their computer use a web browser client to send a request to a web server at a bank. That program may in turn forward the request to its own database client program, which sends a request to a database server at another bank computer to retrieve the account information. The balance is returned to the bank database client, which in turn serves it back to the web browser client, displaying the results to the user. The client-server model has become one of the central ideas ofnetwork computing. Many business applications being written today use the client-server model, as do the Internet's main application protocols, such as HTTP, SMTP, Telnet, and DNS.The interaction between client and server is often described using sequence diagrams. The Unified Modeling Language has support for sequence diagrams.Specific types of clients include web browsers, email clients, and online chat clients.Specific types of servers include web servers, ftp servers, application servers, database servers, name servers, mail servers, file servers,print servers, and terminal servers. Most web services are also types of servers.