Discussion Forums HTML, XML, JavaScript... |
 |
Software Reviews Editors,Others... |
 |
Top100 JavaScript Tutorials, ... |
 |
Tutorials ASP, CSS, Databases... |
Discussion List FAQ, Roundup, Configure ... |
 |
Authoring HTML, JavaScript, CSS... |
 |
Design Layout, Navigation,... |
 |
Graphics Tools, Colors, Images...
|
 |
Software Browsers, Editors, XML...
|
 |
Internet Domains, E-Commerce, ... |
 |
WDVL Resources Intermdiate, Tutorials,... |
 |
WDVL Discussion Lists, Top 100,... |
 |
| Technology Jobs |
 |
|
 |
Quality Management ROI Calculator - Focus on Test Automation
The Rational Quality Management ROI calculator is intended to give you an idea of what return you can garner from implementing our functional testing solutions. Our quality management solutions offer tools to develop a continuous process, powered by automation to govern software delivery.
»
Gartner MarketScope: Application Quality Management Solutions, 1Q 08
This Gartner MarketScope provides guidance for enterprises seeking to purchase tools to manage risk and software quality. We focus on tools fit for large-scale enterprise use and that are ready out of the box to manage quality requirements and functional testing.
»
Whitepaper: Tips for Writing Good Use Cases
Writing a good use case isnt easy, but, fortunately, our experience can be your guide. The concepts and principles assembled here represent the works of many people at IBM, and they form a foundation of proven best practices.
»
Whitepaper: The Role of Integrated Requirements Management in Software Delivery
Learn about the critical role integrated requirements management can play in helping ensure your business goals and IT projects are continuously aligned-whether you are sourcing, integrat-ing, building or maintaining your software. It also looks at ways that integration and automation can help ensure managing projects and the required changes can be executed using manageable processes that satisfy stakeholders and development teams.
»
|
 |
|
|
|
|
|
SSI (Server Side Includes)
October 4, 1999
There are some problems with CGI of course. Perhaps the most
serious problem is speed. Every time the web server gets a
CGI request, it needs to execute the CGI application.
What's worse, if you are using a web server into which the
Perl interpreter has not already been embedded, you will
need to load the Perl interpreter every time. If you begin
to get thousands of requests per second, this could quickly
cause your web services to grind to a halt.
One way to get around this problem is to embed the processing
into the web server itself. Rather than rely on another
layer, most web servers provide several ways to extend the
web server itself; to add logic and processing power.
The earliest technology to take advantage of this idea was
SSI (Server Side Includes). The concept of SSI is simple.
An application developer codes special tags into her HTML
document. Those special tags are understood by the web server
and can be translated on the fly by the web server
as the HTML document passes through on its way to the browser.
|
WARNING: NCSA notes that having the server parse documents is
"a double edged sword. It can be costly for heavily loaded
servers to perform parsing of files while sending them.
Further, it can be considered a security risk to have
average users executing commands as the server's User."
|
Perl is the Right Tool for the Job
Introduction to the Web Application Development Environment (Tools)
SSI Directives
|
|