path

Explanation:

The element's content is matched against the request path.

If isRegExp="true", the entire path must match the regular expression. If isRegExp="false", the path must start with the specified string.

When appears inside a , the isRegExp attribute must not be used.

When placed within an <api> (rather than a <serviceProxy>), you may use a URI template (e.g. /books/{id}). The path parameter will be available in scripts via the pathParam variable.


Can be used in:

serviceProxy, api, internal, bean and soapProxy

Syntax

<path isRegExp="[false,true]"  >[string]</path >

Sample

<serviceProxy port="2000">
  <path >/bank</path >
  <target host="bank.predic8.de" />
</serviceProxy>