...
Parameter Name | Description | Required | Possible Values | Default Value |
---|---|---|---|---|
sequential | The behavior when executing the given sequence. When set as true , mediation will happen within the same thread. When set as false , the mediation engine will use the inbound thread pool. (The default thread pool values can be found in the <ESB<EI_HOME>/repository/conf/synapse.properties file). | Yes | true or false | true |
suspend | When set to true , this makes the inbound endpoint inactive. | Yes | true or false | false |
...
Code Block | ||
---|---|---|
| ||
<inboundEndpoint xmlns="http://ws.apache.org/ns/synapse" name="file" sequence="request" onError="fault" protocol="file" suspend="false"> <parameters> ............... <parameter name="transport.vfs.FileURI" key="conf:/repository/esbei/esbei-configurations/test"/> ............... </parameters> </inboundEndpoint> |
If you need to provide the registry entry value via the Management Console, specify it as $registry:conf:/repository/esbei/esbei-configurations/test
.
Using secure vault aliases in your inbound endpoint configuration
...