In this chapter, I continue development of the web application platform started in Chapter 32, adding support for handling HTTP requests.
You can download the example project for this chapter—and for all the other chapters in this book—from https://github.com/apress/pro-go. See Chapter 2 for how to get help if you have problems running the examples.
Creating the Request Pipeline
The next step in building the platform is to create a web service that will handle HTTP requests from browsers. To prepare, I am going to create a simple ...