<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Matt Prokes &#187; Server</title>
	<atom:link href="http://mattprokes.com/category/server/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattprokes.com</link>
	<description>&#38; Me·an·der·ings of a software engineer.</description>
	<lastBuildDate>Tue, 13 Jul 2010 07:11:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>What Is A Server?</title>
		<link>http://mattprokes.com/2009/04/19/chapter-13-web-development-today-what-is-a-server/</link>
		<comments>http://mattprokes.com/2009/04/19/chapter-13-web-development-today-what-is-a-server/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 04:47:13 +0000</pubDate>
		<dc:creator>mprokes</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web developer 1.3]]></category>

		<guid isPermaLink="false">http://mattprokes.com/?p=571</guid>
		<description><![CDATA[Alpha Edition!, e-mail spelling/grammer/topic suggestions to mattprokes@gmail.com The Professional Developer Series Volume 2, Web Development Chapter 1.3 Web Development Today Page: #12 A server can actually be many things, but the primary purpose of a server is to serve (or transmit) data, or data service(s). The more common definition of a server would be a [...]]]></description>
			<content:encoded><![CDATA[<!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	--><div style='float:right'><table > <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;t=What+Is+A+Server%3F&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td></table></div><p style="text-align:left;"><strong>Alpha Edition!</strong>, e-mail <span style="text-decoration: underline;">spelling/grammer/topic suggestions</span> to <a href="mailto:mattprokes@gmail.com">mattprokes@gmail.com<br />
</a></p>
<p style="text-align:center;"><a href="http://mattprokes.com/2009/04/10/the-professional-developer-series-volume-2-web-development-11/"><img class="alignleft size-full wp-image-519" title="previous1" src="http://webactivex.files.wordpress.com/2009/04/previous1.png" alt="previous1" /></a><a href="http://mattprokes.com/2009/04/16/the-professional-developer-series-volume-2-web-development-12-2/"><img class="alignright size-full wp-image-518" title="next1" src="http://webactivex.files.wordpress.com/2009/04/next1.png" alt="next1" /></a><strong><a href="http://mattprokes.com/2009/04/05/the-professional-developer-series/">The Professional Developer Series</a><br />
<a href="http://mattprokes.com/2009/04/07/the-professional-developer-series-volume-2-web-development/">Volume 2, Web Development</a></strong><strong><a href="http://mattprokes.com/2009/04/07/the-professional-developer-series-volume-2-web-development-10/"><br />
Chapter 1.3 Web Development Today</a></strong><br />
<strong>Page: #12</strong></p>
<p style="text-align:left;">
<p style="text-align:left;">A <a href="http://en.wikipedia.org/wiki/Server_(computing)" target="_blank">server</a> can actually be many things, but the primary purpose of a server is to serve (or transmit) data, or data service(s). The more common definition of a server would be a software package that is available on a computer, which would transmit data through a network. There are several different kinds of servers, and several different ways of using them. So lets go through a few common ones.</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Web_server" target="_blank">Web Servers</a>: Transmit web content and data via a http GET and POST requests (i&#8217;ll explain later). Web Servers usually are only able to transmit static files. Webserver content is most often viewed by clients which understand html, and other web technologies such as web browsers.</li>
<li>Application Web Servers, can deliver either be <a href="http://en.wikipedia.org/wiki/Dynamic_data" target="_blank">dynamic</a> or <a href="http://en.wikipedia.org/wiki/Persistent_data" target="_blank">non-dynamic</a> content by leveraging server based programming languages which are able to deliver dynamic data to a web client.
<ul>
<li>Difference Between: <a href="http://en.wikipedia.org/wiki/Application_server" target="_blank">Application Servers</a>, and Web Servers? Not a whole lot! The only real difference is what a server can actually do, for instance the functionality which makes application servers unique is the ability to return dynamic sets of data and content back to a web client. All servers transmit the same type of content to web based clients, regardless if they are an application server or not.</li>
<li>Application servers generally have many (but not always all) of these unique properties:
<ul>
<li>A type of deployment environment.</li>
<li>Very basic authentication services.</li>
<li>Come pre-packaged with frameworks.</li>
<li>Contain database management systems.</li>
<li>Associated with a language for dynamic processing of data.</li>
<li>Application servers focus on serving dynamic data, thus facilities are more focused on satisfying business logic, and data requests. Webservers are more or less &#8220;generic&#8221; and use agnostic.</li>
<li>Application servers contain facilities to package up, and execute business logic.</li>
<li>Contain unique webservice facilities, <strong>specifically:  binary/bytecode object transmission systems for third party plugins, or platform specific technologies</strong>.</li>
</ul>
<p>Today, application servers are the only way of delivering dynamic binary data over the internet leveraging (<a href="http://en.wikipedia.org/wiki/Corba" target="_blank">CORBA</a>, <a href="http://en.wikipedia.org/wiki/Remote_procedure_call" target="_blank">RPC</a>, and other non-XML data transmission technologies), though these technologies are not used as much as they once were. What happend was when xml came out, it offered a platform agnostic way of transmitting data through the internet, unlike many of the plarform specific standards. Thus allowing any platform that understood xml to be able to send and recieve data through the internet.</li>
</ul>
</li>
<li><a href="http://en.wikipedia.org/wiki/Database_server" target="_blank">Database Server</a>: Is simply software which provides access to a database through a network. Database servers are often bundled with the actual database which they service. The primary function of database servers today is to accept <a href="http://en.wikipedia.org/wiki/SQL">SQL</a> based &#8220;queries&#8221; (requests), and retrieve/store data, images, text. There are several different kinds of databases, but that is a discussion for a different book.</li>
</ul>
<ul>
<li><a href="http://en.wikipedia.org/wiki/File_server" target="_blank">File</a>/<a href="http://en.wikipedia.org/wiki/File_Transfer_Protocol" target="_blank">FTP</a> Server: Is a server which delivers files through a network. There are several different kinds of file servers, including <a href="http://en.wikipedia.org/wiki/Peer-to-peer" target="_blank">P2P</a>, <a href="http://en.wikipedia.org/wiki/.torrent" target="_blank">Torrent</a>, etc.. The most popular on the web today (and also the oldest) is a FTP Server or File Transfer Protocol. This protocol is built into almost every web browser available. So if you ever need to distribute a file FTP is the way to go. As a side note, most browsers these days also support HTTP based transfers; meaning if you have a file, you can just put it out on the webserver and as long as it is not a format that the browser knows of it will download it.</li>
</ul>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Proxy_server" target="_blank">Proxy Server</a>: Is a &#8220;proxy&#8221; representative of a real one. It is generally the job of a proxy server to <span style="text-decoration: underline;">forward</span> requests made to it from another computer, and then return the results from that request back to the request(or). Proxys are also sometimes used in filtering, and they are an essential part of routing technology.</li>
</ul>
<a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="Reddit" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a href="http://www.addtoany.com/add_to/bebo?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="Bebo" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/bebo.png" width="16" height="16" alt="Bebo"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a href="http://www.addtoany.com/add_to/netlog?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="Netlog" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/netlog.png" width="16" height="16" alt="Netlog"/></a> <a href="http://www.addtoany.com/add_to/hellotxt?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F" title="HelloTxt" rel="nofollow" target="_blank"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/icons/hellotxt.png" width="16" height="16" alt="HelloTxt"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmattprokes.com%2F2009%2F04%2F19%2Fchapter-13-web-development-today-what-is-a-server%2F&amp;linkname=What%20Is%20A%20Server%3F"><img src="http://mattprokes.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://mattprokes.com/2009/04/19/chapter-13-web-development-today-what-is-a-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.358 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-08 16:26:10 -->
