summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_reflector.xml
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2010-02-14 16:09:53 +0100
committerGraham Leggett <minfrin@apache.org>2010-02-14 16:09:53 +0100
commit43a5ac968cbe95ecece9df41c7c31f75e60b5439 (patch)
tree63836cd6ab6225727fe98958cdea4562433a0db2 /docs/manual/mod/mod_reflector.xml
parentmod_proxy_http: Make sure that when an ErrorDocument is served (diff)
downloadapache2-43a5ac968cbe95ecece9df41c7c31f75e60b5439.tar.xz
apache2-43a5ac968cbe95ecece9df41c7c31f75e60b5439.zip
Introduce mod_reflector, a handler capable of reflecting POSTed
request bodies back within the response through the output filter stack. Can be used to turn an output filter into a web service. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910017 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_reflector.xml')
-rw-r--r--docs/manual/mod/mod_reflector.xml83
1 files changed, 83 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_reflector.xml b/docs/manual/mod/mod_reflector.xml
new file mode 100644
index 0000000000..947a6f9baa
--- /dev/null
+++ b/docs/manual/mod/mod_reflector.xml
@@ -0,0 +1,83 @@
+<?xml version="1.0"?>
+<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
+<!-- $LastChangedRevision: 894290 $ -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<modulesynopsis metafile="mod_reflector.xml.meta">
+
+<name>mod_reflector</name>
+<description>Reflect a request body as a response via the output filter stack.</description>
+<status>Base</status>
+<sourcefile>mod_reflector.c</sourcefile>
+<identifier>reflector_module</identifier>
+<compatibility>Version 2.3 and later</compatibility>
+
+<summary>
+ <p>This module allows request bodies to be reflected back to the
+ client, in the process passing the request through the output filter
+ stack. A suitably configured chain of filters can be used to transform
+ the request into a response. This module can used to turn an output
+ filter into an HTTP service.</p>
+</summary>
+
+<section id="examples"><title>Examples</title>
+ <dl>
+ <dt>Compression service</dt>
+ <dd>Pass the request body through the DEFLATE filter to compress the
+ body. This request requires a Content-Encoding request header containing
+ "gzip" for the filter to return compressed data.
+ <example>
+ &lt;Location /compress&gt;<br/>
+ SetHandler reflector<br/>
+ SetOutputFilter DEFLATE<br/>
+ &lt;/Location&gt;
+ </example>
+ </dd>
+
+ <dt>Image downsampling service</dt>
+ <dd>Pass the request body through an image downsampling filter, and reflect
+ the results to the caller.
+ <example>
+ &lt;Location /downsample&gt;<br/>
+ SetHandler reflector<br/>
+ SetOutputFilter DOWNSAMPLE<br/>
+ &lt;/Location&gt;
+ </example>
+ </dd>
+ </dl>
+</section>
+
+<directivesynopsis>
+<name>ReflectorHeader</name>
+<description>Reflect an input header to the output headers</description>
+<syntax>ReflectorHeader <var>inputheader</var> <var>[outputheader]</var></syntax>
+<contextlist><context>server config</context><context>virtual host</context>
+<context>directory</context><context>.htaccess</context></contextlist>
+<override>Options</override>
+
+<usage>
+ <p>This directive controls the reflection of request headers to the response.
+ The first argument is the name of the request header to copy. If the optional
+ second argument is specified, it will be used as the name of the response
+ header, otherwise the original request header name will be used.</p>
+</usage>
+</directivesynopsis>
+
+</modulesynopsis>