davideellis.wordpress.com
CGI and Parameter Input | David E. Ellis
https://davideellis.wordpress.com/roll-your-own-web-server/cgi-and-parameter-input
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. CGI and Parameter Input. Is used to separate the url resource (typically the script name or an alias for some service on the server that is to be invoked) from the parameters. Each keyword/data pair of parameters is then separated from the others with an am...
davideellis.wordpress.com
Share… | David E. Ellis
https://davideellis.wordpress.com/2015/08/05/share
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. August 5, 2015. I shall be at Share in Orlando next week so if you seem me (picture on my about page), please do say hi. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public).
davideellis.wordpress.com
HLASM Toolkit Structured Assembler macros | David E. Ellis
https://davideellis.wordpress.com/assembler/hlasm-toolkit-structured-assembler-macros
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. HLASM Toolkit Structured Assembler macros. One of the biggest impediments to being productive with assembler is how you code complex selection logic tests. For example in Cobol say, you might code something like this:. Branch if true to LABEL1. With the structu...
davideellis.wordpress.com
Disclaimer | David E. Ellis
https://davideellis.wordpress.com/disclaimer
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. The postings on this site are my own and do not necessarily represent the positions, strategies or opinions of my employer. Links ‘n’ Stuff! Redbook - System z on the Go: Accessing z/OS from Smartphones. Redbook - Implementing REXX Support in SDSF.
davideellis.wordpress.com
Accessing Resources | David E. Ellis
https://davideellis.wordpress.com/roll-your-own-web-server/accessing-resources
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. When you enter a web site URL like:. Http:/ www.mysite.com/somelocation/pages/index.html. Server root (dir) - - somelocation (dir) - - - pages (dir) - - - index.html (file). Because some tool kits, for example the jQuery UI tool kit, make use of long names for ...
davideellis.wordpress.com
The HTTP request | David E. Ellis
https://davideellis.wordpress.com/roll-your-own-web-server/the-http-request
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. When it arrives at your server an HTTP request consists of two or maybe three (depends upon the request) parts. Following that there may be more data, for example form data if the form method is POST or XML from a SOAP request. For example in a browser address ...
davideellis.wordpress.com
Introduction | David E. Ellis
https://davideellis.wordpress.com/roll-your-own-web-server/introduction
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. July 17, 2012 at 7:12 pm. This is some cool stuff and I agree with your philosophy about yet “another” layer. Your comment about programmers always thinking of code to solve any problem made me laugh. December 5, 2012 at 2:06 pm. BTW…I worked for Amdahl i...
davideellis.wordpress.com
z/OS Assembler | David E. Ellis
https://davideellis.wordpress.com/assembler
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. If I get this right, this will be an index page to a variety of z/OS assembler related topics. Z/Architecture Principles of Operation. Links ‘n’ Stuff! Redbook - System z on the Go: Accessing z/OS from Smartphones. Redbook - Implementing REXX Support in SDSF.
davideellis.wordpress.com
How a web server works | David E. Ellis
https://davideellis.wordpress.com/roll-your-own-web-server/how-a-web-server-works
David E. Ellis. An old Dinosaur in a modern world. Z/Architecture Principles of Operation. HLASM Toolkit Structured Assembler macros. Instructions – What you ‘really’ need. Roll Your Own Web Server. How a web server works. CGI and Parameter Input. How a web server works. Basically, the sequence of events goes like this:. The server connects to the local TCP/IP stack. When a connection request arrives the server accepts it and receives the data. The server sends the resource in a response to the client.