1. Proxies and Flow

request

Version

Interceptors are usually applied to requests and responses. By nesting interceptors into a <request> Element you can limit their application to requests only.

Syntax

request:
- <flow>
request:
  - <flow>

Sample

<api port="2000">
<request>
<regExReplacer regex="Hallo" replace="Hello" />
<transform xslt="customer2person.xsl" />
</request>
</api>
<api port="2000">
  <request>
	<regExReplacer regex="Hallo" replace="Hello" />
	<transform xslt="customer2person.xsl" />
  </request>
</api>

Child Structure

ElementCardinalityDescription
flow0..*Sets the flow of plugins that will be executed.

Can be used in