Book Image

Learning Alfresco Web Scripts

By : Ramesh Chauhan
Book Image

Learning Alfresco Web Scripts

By: Ramesh Chauhan

Overview of this book

Table of Contents (18 chapters)
Learning Alfresco Web Scripts
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Custom implementation of the web script runtime


Let's first briefly understand the role of the web script runtime in the web script framework. During the web script execution flow, once the request dispatcher sends the request, the web script runtime will delegate the request to the web script container for further processing in order to execute the web script. There are different implementations available for the web script runtime such as servlet runtime, portlet runtime, JSF runtime, Facebook runtime, and SURF web framework runtime. As a developer, you must be interested in knowing what needs to be done if a new implementation for the web script runtime is to be implemented. Let's take a look at it here.

In order to understand how to create a customized implementation of the web script runtime in the web script framework, first let's take a look at the service provider interface provided by the web script framework, which opens up the possibilities to create custom implementation. If you...