Articoli correlati a Writing Apache Modules with Perl and C: The Apache...

Writing Apache Modules with Perl and C: The Apache API and mod_perl - Brossura

 
9781565925670: Writing Apache Modules with Perl and C: The Apache API and mod_perl

Sinossi

Apache is the most popular web server on the Internet because it is free, reliable, and extensible. The availability of the source code and the modular design of Apache makes it possible to extend web server functionality through the Apache API.For the most part, however, the Apache API has only been available to C programmers, and requires rebuilding the Apache server from source. mod_perl, the popular Apache module used primarily for enhanced CGI performance, changed all that by making the Apache API available to Perl programmers. With mod_perl, it becomes simple to develop Apache modules with Perl and install them without having to rebuild the web server.Writing Apache Modules with Perl and C shows how to extend web server capabilities regardless of whether the programming language is Perl or C. The book explains the design of Apache, mod_perl, and the Apache API. It then demonstrates how to use them to perform for tasks like the following:

  • Rewriting CGI scripts as Apache modules to vastly improve performance
  • Server-side filtering of HTML documents, to embed special markup or code (much like SSI)
  • Enhancing server log functionality
  • Converting file formats on the fly
  • Implementing dynamic navigation bars
  • Incorporating database access into CGI scripts
  • Customizing access control and authorization to block robots or to use an external database for passwords
The authors are Lincoln Stein and Doug MacEachern. Lincoln is the successful author of How to Set Up and Maintain a World Wide web Site and the developer of the widely used Perl CGI.pm module. Doug is a consultant and the creator of the innovative mod_perl Apache module.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore

Doug MacEachern has been addicted to Perl and web servers since early 1994 when he was introduced to Plexus as a student employee at the University of Arizona. Soon after returning to his home town of Boston, Massachusetts, and entering the "real world," he discovered the Apache web server, and since early 1996, he has been gluing Perl into all its nooks and crannies. His day job has consisted of integrating various other technologies with the Web, including DCE, Kerberos, and GSSAPI, but Perl has been the only one he cannot let go of. Doug has continued as a developer disguised as a consultant since the start of 1998, spending most of his time between Auckland, New Zealand, and San Francisco, California, with time at home in Boston during the warmer months. Doug likes to spend his time away from software--far, far away, sailing on the ocean, diving below it, or simply looking at it from a warm, sandy beach where technology doesn't go much beyond thatched huts and blenders.

Lincoln Stein is an assistant investigator at Cold Spring Harbor Laboratory, where he develops databases and user interfaces for the Human Genome Project using the Apache server and its module API. He is the author of several books about programming for the Web, including The Official Guide to CGI.pm, How to Set Up and Maintain a Web Site, and Web Security: A Step-by-Step Reference Guide.

Contenuti

Preface; What You Need to Know to Get the Most out of This Book; How This Book Is Organized; Conventions; The Companion Web Site to This Book; Using FTP and CPAN; Comments and Questions; Acknowledgments; Chapter 1: Server-Side Programming with Apache; 1.1 Web Programming Then and Now; 1.2 The Apache Project; 1.3 The Apache C and Perl APIs; 1.4 Ideas and Success Stories; Chapter 2: A First Module; 2.1 Preliminaries; 2.2 Directory Layout Structure; 2.3 Installing mod_perl; 2.4 “Hello World” with the Perl API; 2.5 “Hello World” with the C API; 2.6 Instant Modules with Apache::Registry; 2.7 Troubleshooting Modules; Chapter 3: The Apache Module Architecture and API; 3.1 How Apache Works; 3.2 The Apache Life Cycle; 3.3 The Handler API; 3.4 Perl API Classes and Data Structures; Chapter 4: Content Handlers; 4.1 Content Handlers as File Processors; 4.2 Virtual Documents; 4.3 Redirection; 4.4 Processing Input; 4.5 Apache::Registry; 4.6 Handling Errors; 4.7 Chaining Content Handlers; 4.8 Method Handlers; Chapter 5: Maintaining State; 5.1 Choosing the Right Technique; 5.2 Maintaining State in Hidden Fields; 5.3 Maintaining State with Cookies; 5.4 Protecting Client-Side Information; 5.5 Storing State at the Server Side; 5.6 Storing State Information in SQL Databases; 5.7 Other Server-Side Techniques; Chapter 6: Authentication and Authorization; 6.1 Access Control, Authentication, and Authorization; 6.2 Access Control with mod_perl; 6.3 Authentication Handlers; 6.4 Authorization Handlers; 6.5 Cookie-Based Access Control; 6.6 Authentication with the Secure Sockets Layer; Chapter 7: Other Request Phases; 7.1 The Child Initialization and Exit Phases; 7.2 The Post Read Request Phase; 7.3 The URI Translation Phase; 7.4 The Header Parser Phase; 7.5 Customizing the Type Checking Phase; 7.6 Customizing the Fixup Phase; 7.7 The Logging Phase; 7.8 Registered Cleanups; 7.9 Handling Proxy Requests; 7.10 Perl Server-Side Includes; 7.11 Subclassing the Apache Class; Chapter 8: Customizing the Apache Configuration Process; 8.1 Simple Configuration with the PerlSetVar Directive; 8.2 The Apache Configuration Directive API; 8.3 Configuring Apache with Perl; 8.4 Documenting Configuration Files; Chapter 9: Perl API Reference Guide; 9.1 The Apache Request Object; 9.2 Other Core Perl API Classes; 9.3 Configuration Classes; 9.4 The Apache::File Class; 9.5 Special Global Variables, Subroutines, and Literals; Chapter 10: C API Reference Guide, Part I; 10.1 Which Header Files to Use?; 10.2 Major Data Structures; 10.3 Memory Management and Resource Pools; 10.4 The Array API; 10.5 The Table API; 10.6 Processing Requests; 10.7 Server Core Routines; Chapter 11: C API Reference Guide, Part II; 11.1 Implementing Configuration Directives in C; 11.2 Customizing the Configuration Process; 11.3 String and URI Manipulation; 11.4 File and Directory Management; 11.5 Time and Date Functions; 11.6 Message Digest Algorithm Functions; 11.7 User and Group ID Information Routines; 11.8 Data Mutex Locking; 11.9 Launching Subprocesses; Standard Noncore Modules; The Apache::Registry Class; The Apache::PerlRun Class; The Apache::RegistryLoader Class; The Apache::Resource Class; The Apache::PerlSections Class; The Apache::ReadConfig Class; The Apache::StatINC Class; The Apache::Include Class; The Apache::Status Class; Building and Installing mod_perl; Standard Installation; Other Configuration Methods; Building Multifule C API Modules; Statistically Linked Modules That Need External Libraries; Dynamically Linked Modules That Need External Libraries; Building Modules from Several Source Files; Apache:: Modules Available on CPAN; Content Handling; URI Translation; Perl and HTML Mixing; Authentication and Authorization; Fixup; Logging; Profiling; Persistent Database Connections; Miscellaneous; Third-Party C Modules; Content Handling; International Language; Security; Access Control; Authentication and Authorization; Logging; Distributed Authoring; Miscellaneous; HTML::Embperl—Embedding Perl Code in HTML; Dynamic Tables; Handling Forms; Storing Persistent Data; Modularization of Embperl Pages; Debugging; Querying a Database; Security; An Extended Example; Colophon;

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreO'Reilly Media
  • Data di pubblicazione1999
  • ISBN 10 156592567X
  • ISBN 13 9781565925670
  • RilegaturaCopertina flessibile
  • LinguaInglese
  • Numero edizione1
  • Numero di pagine750

Compra usato

Condizioni: quasi ottimo
Ancien livre de bibliothèque. Traces...
Visualizza questo articolo

EUR 8,00 per la spedizione da Francia a Italia

Destinazione, tempi e costi

EUR 17,88 per la spedizione da U.S.A. a Italia

Destinazione, tempi e costi

Risultati della ricerca per Writing Apache Modules with Perl and C: The Apache...

Foto dell'editore

Stein
Editore: O'Reilly, 1999
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Softcover

Da: Ammareal, Morangis, Francia

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Softcover. Condizione: Bon. Ancien livre de bibliothèque. Traces d'usure sur la couverture. Salissures sur la tranche. Edition 1999. Ammareal reverse jusqu'à 15% du prix net de cet article à des organisations caritatives. ENGLISH DESCRIPTION Book Condition: Used, Good. Former library book. Signs of wear on the cover. Stains on the edge. Edition 1999. Ammareal gives back up to 15% of this item's net price to charity organizations. Codice articolo E-554-865

Contatta il venditore

Compra usato

EUR 2,70
Convertire valuta
Spese di spedizione: EUR 8,00
Da: Francia a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

MacEachern, Doug, Stein, Lincoln
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Brossura Prima edizione

Da: Better World Books Ltd, Dunfermline, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Very Good. 1st. Ships from the UK. Former library book; may include library markings. Used book that is in excellent condition. May show signs of wear or have minor defects. Codice articolo 40589195-20

Contatta il venditore

Compra usato

EUR 5,07
Convertire valuta
Spese di spedizione: EUR 5,93
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

MacEachern, Doug, Stein, Lincoln
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Brossura Prima edizione

Da: Better World Books Ltd, Dunfermline, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. 1st. Ships from the UK. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Codice articolo GRP24216882

Contatta il venditore

Compra usato

EUR 5,07
Convertire valuta
Spese di spedizione: EUR 5,93
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Stein
Editore: O'Reilly, 1999
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Softcover

Da: Ammareal, Morangis, Francia

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Softcover. Condizione: Bon. Ancien livre de bibliothèque. Traces de pliures sur la couverture. Traces d'usure sur la couverture. Salissures sur la tranche. Pages cornées. Edition 1999. Ammareal reverse jusqu'à 15% du prix net de cet article à des organisations caritatives. ENGLISH DESCRIPTION Book Condition: Used, Good. Former library book. Traces of creases on the cover. Signs of wear on the cover. Stains on the edge. Dog-eared pages. Edition 1999. Ammareal gives back up to 15% of this item's net price to charity organizations. Codice articolo E-853-945

Contatta il venditore

Compra usato

EUR 4,04
Convertire valuta
Spese di spedizione: EUR 8,00
Da: Francia a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Stein, Lincoln
Editore: O'Reilly Media, 1999
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Paperback

Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Codice articolo GOR003175056

Contatta il venditore

Compra usato

EUR 1,78
Convertire valuta
Spese di spedizione: EUR 10,68
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Lincoln Stein, Doug MacEachern
Editore: O'Reilly Media, 1999
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Brossura

Da: Hamelyn, Madrid, Spagna

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Muy bueno. : Este libro enseña cómo extender las capacidades de su servidor web. Explica el diseño de Apache, mod_perl y la API de Apache. Luego, demuestra cómo usarlos para realizar tareas como: usar mod_perl para mejorar enormemente el rendimiento de los scripts CGI basados en Perl, reescribir scripts CGI como módulos de Apache para darles acceso completo a la API de Apache, filtrar del lado del servidor de documentos HTML para incrustar marcas o código especiales (como SSI), mejorar la funcionalidad del registro del servidor, convertir formatos de archivo sobre la marcha, implementar barras de navegación dinámicas, incorporar acceso a la base de datos en scripts CGI y personalizar el control de acceso y la autorización para bloquear robots o usar una base de datos externa para contraseñas. EAN: 9781565925670 Tipo: Libros Categoría: Tecnología Título: Writing Apache Modules with Perl and C Autor: Lincoln Stein| Doug MacEachern Editorial: O'Reilly Media Idioma: en Páginas: 746 Formato: tapa blanda. Codice articolo Happ-2023-12-26-ad7275f8

Contatta il venditore

Compra usato

EUR 5,99
Convertire valuta
Spese di spedizione: EUR 6,99
Da: Spagna a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Doug MacEachern, Lincoln Stein
Editore: OREILLY MEDIA, 1999
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Brossura

Da: Buchpark, Trebbin, Germania

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Gut. Zustand: Gut - Gebrauchs- und Lagerspuren. Innen: Seiten eingerissen. Aus der Auflösung einer renommierten Bibliothek. Kann Stempel beinhalten. | Seiten: 750 | Sprache: Englisch | Produktart: Sonstiges. Codice articolo 512/203

Contatta il venditore

Compra usato

EUR 6,40
Convertire valuta
Spese di spedizione: EUR 6,90
Da: Germania a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Immagini fornite dal venditore

Stein, Lincoln D. und Doug MacEachern:
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Brossura

Da: NEPO UG, Rüsselsheim am Main, Germania

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Gut. 743 Seiten ex Library Book / aus einer wissenschafltichen Bibliothek / Sprache: Französisch Gewicht in Gramm: 1035 23,4 x 17,8 x 3,1 cm, Taschenbuch. Codice articolo 335475

Contatta il venditore

Compra usato

EUR 6,92
Convertire valuta
Spese di spedizione: EUR 9,00
Da: Germania a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Immagini fornite dal venditore

Lincoln Stein,Doug MacEachern
Editore: O'Reilly Media, 1999
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Brossura

Da: WeBuyBooks, Rossendale, LANCS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Most items will be dispatched the same or the next working day. A copy that has been read but remains in clean condition. All of the pages are intact and the cover is intact and the spine may show signs of wear. The book may have minor markings which are not specifically mentioned. A few small marks or stains to the page edges/pages . Minor shelf wear. Codice articolo wbb0020949507

Contatta il venditore

Compra usato

EUR 5,74
Convertire valuta
Spese di spedizione: EUR 14,00
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

MacEachern, Doug; Stein, Lincoln
Editore: O'Reilly Media, 1999
ISBN 10: 156592567X ISBN 13: 9781565925670
Antico o usato Paperback

Da: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. No Jacket. May have limited writing in cover pages. Pages are unmarked. ~ ThriftBooks: Read More, Spend Less 2.45. Codice articolo G156592567XI4N00

Contatta il venditore

Compra usato

EUR 5,86
Convertire valuta
Spese di spedizione: EUR 16,46
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Vedi altre 32 copie di questo libro

Vedi tutti i risultati per questo libro