Tuesday, March 27, 2007
Hungry ? Wanna have a cookie ?
http://www.google.com.au/url?sa=X&start=3&oi=define&q=http://www.acad.bg/beginner/gnrt/appendix/glossary.html&usg=__aygV-_U4adW6l9PA2gQXkmIZbQ4=
http://www.howstuffworks.com/cookie.htm
Posted by RJ at 15:40 0 comments
Web servers
Working:
Process of getting a Web page onto your computer screen:
The browser broke the URL into three parts:
The protocol ("http")
The server name ("www.howstuffworks.com")
The file name ("web-server.htm")
The browser communicated with a name server to translate the server name "www.howstuffworks.com" into an IP Address, which it uses to connect to the server machine.
The browser then formed a connection to the server at that IP address on port 80.
Following the HTTP protocol, the browser sent a GET request to the server, asking for the file http://www.howstuffworks.com/web-server.htm.
The server then sent the HTML text for the Web page to the browser.
The browser read the HTML tags and formatted the page onto your screen.
Reference:
http://www.howstuffworks.com/web-server2.htm
Posted by RJ at 15:36 0 comments
Problems with FTP
- sends data in clear text, therefore can be intercepted.
- hard to filter traffic using a firewall
- the firewall should be well equipped
- high latency
- no integrity check on server side
- no error detection
(Wiki pedia )
Posted by RJ at 15:25 0 comments
FTP - File transfer protocol
File tranfer protocol (FTP): Layer 5 (Application Layer)
- used to transfer data from one computer to another over the Internet, or through a network.
- protocol used for exchanging files over any network that supports the Internet protocol.
- Min of two computers are involved in FTP transfer: server and client
FTP server listens on the network for requests from clients,making use of FTP server software.
FTP client, send requests to the servers and initiates a connection. - Once connected, the client can do a number of file manipulation operations such as uploading files to the server, download files from the server, rename or delete files on the server and so on.
- Anyone can create a FTP
- Almost all computer platform support the FTP protocol. This allows any computer connected to a TCP/IP based network to manipulate files on another computer on that network regardless of OS involved
Reference:
Posted by RJ at 15:16 0 comments