Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache Proxy and Abstraction

Status
Not open for further replies.

dpimental

Programmer
Jul 23, 2002
535
US
I am working on a project where the client is talking about apache proxy and apache proxy abstraction. This web server is hosting a real estate web site?

Can anyone shed some light on these two terms.

David Pimental
(US, Oh)
dpimental@juno.com
 
A proxy is a server that will accept an HTTP request and forward it to the actual server as if it had originated from itself. When the request comes back from the actual, the proxy then gives the results back to the requestor. It's usually used for either providing filtered web content to a group of clients.

I'm not familiar with the phrase "proxy abstraction" in this context.
 
what about the term Abstraction Layer?

David Pimental
(US, Oh)
dpimental@juno.com
 
That's an incredibly generic term. An abstraction layer is a layer of interface that abstracts a more specific or more complicated interface below it from whatever uses it.

An example is a database abstraction layer that provides a standard interface to many different databases hiding the specifics of each database from and providing a uniform API to the application using it.

Apache provides a protocol abstraction layer to ease the development of modules to provide protocol implemenations without having write a special interface for eash. This, however, is usually only of interest to developers.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top