Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The File component provides access to file systems, allowing files to be processed by any other Camel Components or messages from other components to be saved to disk.

URI format

Code Block

file:directoryName[?options]

or

Code Block

file://directoryName[?options]

...

Wiki Markup
{div:class=confluenceTableSmall}
|| Name || Default Value || Description ||
| {{initialDelay}} | {{1000}} | Milliseconds before polling the file/directory starts. |
| {{delay}} | {{500}} | Milliseconds before the next poll of the file/directory. |
| {{useFixedDelay}} | | Controls if fixed delay or fixed rate is used. See [ScheduledExecutorService|http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ScheduledExecutorService.html] in JDK for details. In *Camel 2.7.x* or older the default value is {{false}}. From *Camel 2.8* onwards the default value is {{true}}. |
| {{runLoggingLevel}} | {{TRACE}} | *Camel 2.8:* The consumer logs a start/complete log line when it polls. This option allows you to configure the logging level for that. |
| {{recursive}} | {{false}} | If a directory, will look for files in all the sub-directories as well. |
| {{delete}} | {{false}} | If {{true}}, the file will be deleted *after* it is processed |
| {{noop}} | {{false}} | If {{true}}, the file is not moved or deleted in any way. This option is good for readonly data, or for [ETL] type requirements. If {{noop=true}}, Camel will set {{idempotent=true}} as well, to avoid consuming the same files over and over again. |
| {{preMove}} | {{null}} | [Expression] (such as [File Language]) used to dynamically set the filename when moving it *before* processing. For example to move in-progress files into the {{order}} directory set this value to {{order}}. |
| {{move}} | {{.camel}} | [Expression] (such as [File Language]) used to dynamically set the filename when moving it *after* processing. To move files into a {{.done}} subdirectory just enter {{.done}}. |
| {{moveFailed}} | {{null}} | [Expression] (such as [File Language]) used to dynamically set a different target directory when moving files after processing (configured via {{move}} defined above) failed. For example, to move files into a {{.error}} subdirectory use: {{.error}}. Note: When moving the files to the “fail” location Camel will *handle* the error and will not pick up the file again. |
| {{include}} | {{null}} | Is used to include files, if filename matches the regex pattern. |
| {{exclude}} | {{null}} | Is used to exclude files, if filename matches the regex pattern. |
| {{antInclude}} | {{null}} | *Camel 2.10:* Ant style filter inclusion, for example {{antInclude=\*}}{{{}*/*{}}}{{.txt}}. Multiple inclusions may be specified in comma-delimited format. See [below|#Filtering using ANT path matcher] for more details about ant path filters. |
| {{antExclude}} | {{null}} | *Camel 2.10:* Ant style filter exclusion. If both {{antInclude}} and {{antExclude}} are used, {{antExclude}} takes precedence over {{antInclude}}. Multiple exclusions may be specified in comma-delimited format. See [below|#Filtering using ANT path matcher] for more details about ant path filters. |
| {{antFilterCaseSensitive}} | {{true}} | *Camel 2.11:* Ant style filter which is case sensitive or not. |
| {{idempotent}} | {{false}} | Option to use the [Idempotent Consumer] EIP pattern to let Camel skip already processed files. Will by default use a memory based LRUCache that holds 1000 entries. If {{noop=true}} then idempotent will be enabled as well to avoid consuming the same files over and over again. |
| {{idempotentKey}} | {{Expression}} | *Camel 2.11:* To use a custom idempotent key. By default the absolute path of the file is used. You can use the [File Language], for example to use the file name and file size, you can do: {code}idempotentKey=${file:name}-${file:size}{code}. |
| {{idempotentRepository}} | {{null}} | A pluggable repository [org.apache.camel.spi.IdempotentRepository|http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/spi/IdempotentRepository.html] which by default use {{MemoryMessageIdRepository}} if none is specified and {{idempotent}} is {{true}}. |
| {{inProgressRepository}} | {{memory}} | A pluggable in-progress repository [org.apache.camel.spi.IdempotentRepository|http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/spi/IdempotentRepository.html]. The in-progress repository is used to account the current in progress files being consumed. By default a memory based repository is used. |
| {{filter}} | {{null}} | Pluggable filter as a {{org.apache.camel.component.file.GenericFileFilter}} class. Will skip files if filter returns {{false}} in its {{accept()}} method. More details in section below. |
| {{sorter}} | {{null}} | Pluggable sorter as a [java.util.Comparator<org.apache.camel.component.file.GenericFile>|http://java.sun.com/j2se/1.5.0/docs/api/java/util/Comparator.html] class. |
| {{sortBy}} | {{null}} | Built-in sort using the [File Language]. Supports nested sorts, so you can have a sort by file name and as a 2nd group sort by modified date. See sorting section below for details. |
| {{readLock}} | {{markerFile}} | Used by consumer, to only poll the files if it has exclusive read-lock on the file (i.e. the file is not in-progress or being written). Camel will wait until the file lock is granted. \\
This option provides the build in strategies: \\  {{markerFile}} Camel creates a marker file (fileName.camelLock) and then holds a lock on it. This option is *not* available for the [FTP|FTP2] component. \\  {{changed}} is using file length/modification timestamp to detect whether the file is currently being copied or not. Will at least use 1 sec. to determine this, so this option cannot consume files as fast as the others, but can be more reliable as the JDK IO API cannot always determine whether a file is currently being used by another process. The option {{readLockCheckInterval}} can be used to set the check frequency. This option is *only* avail for the [FTP|FTP2] component from *Camel 2.8* onwards. Notice that from *Camel 2.10.1* onwards the [FTP|FTP2] option {{fastExistsCheck}} can be enabled to speedup this readLock strategy, if the FTP server support the LIST operation with a full file name (some servers may not). \\  {{fileLock}} is for using {{java.nio.channels.FileLock}}. This option is *not* avail for the [FTP|FTP2] component. This approach should be avoided when accessing a remote file system via a mount/share unless that file system supports distributed file locks. \\  {{rename}} is for using a try to rename the file as a test if we can get exclusive read-lock. \\  {{none}} is for no read locks at all. \\
Notice from *Camel 2.10* onwards the read locks {{changed}}, {{fileLock}} and {{rename}} will also use a {{markerFile}} as well, to ensure not picking up files that may be in process by another Camel consumer running on another node (eg cluster). This is only supported by the file component (not the ftp component). |
| {{readLockTimeout}} | {{10000}} | Optional timeout in millis for the read-lock, if supported by the read-lock. If the read-lock could not be granted and the timeout triggered, then Camel will skip the file. At next poll Camel, will try the file again, and this time maybe the read-lock could be granted. Use a value of 0 or lower to indicate forever. In *Camel 2.0* the default value is 0. Starting with *Camel 2.1* the default value is 10000. Currently {{fileLock}}, {{changed}} and {{rename}} support the timeout. *Notice:* For [FTP|FTP2] the default {{readLockTimeout}} value is {{20000}} instead of {{10000}}. |
| {{readLockCheckInterval}} | {{1000}} | *Camel 2.6:* Interval in millis for the read-lock, if supported by the read lock. This interval is used for sleeping between attempts to acquire the read lock. For example when using the {{changed}} read lock, you can set a higher interval period to cater for _slow writes_. The default of 1 sec. may be _too fast_ if the producer is very slow writing the file. For [FTP|FTP2] the default {{readLockCheckInterval}} is {{5000}}. |
| {{readLockMinLength}} | {{1}} | *Camel 2.10.1:* This option applied only for {{readLock=changed}}. This option allows you to configure a minimum file length. By default Camel expects the file to contain data, and thus the default value is 1. You can set this option to zero, to allow consuming zero-length files. | 
| {{readLockLoggingLevel}} | {{WARN}} | *Camel 2.12:* Logging level used when a read lock could not be acquired. By default a WARN is logged. You can change this level, for example to OFF to not have any logging. This option is only applicable for readLock of types: changed, fileLock, rename. |
| {{directoryMustExist}} | {{false}} | *Camel 2.5:* Similar to {{startingDirectoryMustExist}} but this applies during polling recursive sub directories. |
| {{doneFileName}} | {{null}} | *Camel 2.6:* If provided, Camel will only consume files if a _done_ file exists. This option configures what file name to use. Either you can specify a fixed name. Or you can use dynamic placeholders. The _done_ file is *always* expected in the same folder as the original file. See _using done file_ and _writing done file_ sections for examples. |
| {{exclusiveReadLockStrategy}} | {{null}} | Pluggable read-lock as a {{org.apache.camel.component.file.GenericFileExclusiveReadLockStrategy}} implementation. |
| {{maxMessagesPerPoll}} | {{0}} | An integer to define a maximum messages to gather per poll. By default no maximum is set. Can be used to set a limit of e.g. 1000 to avoid when starting up the server that there are thousands of files. Set a value of 0 or negative to disabled it. See more details at [Batch Consumer]. *Notice:* If this option is in use then the [File|File2] and [FTP|FTP2] components will limit *before* any sorting. For example if you have 100000 files and use {{maxMessagesPerPoll=500}}, then only the first 500 files will be picked up, and then sorted. You can use the {{eagerMaxMessagesPerPoll}} option and set this to {{false}} to allow to scan all files first and then sort afterwards. |
| {{eagerMaxMessagesPerPoll}} | {{true}} | *Camel 2.9.3:* Allows for controlling whether the limit from {{maxMessagesPerPoll}} is eager or not. If eager then the limit is during the scanning of files. Where as {{false}} would scan all files, and then perform sorting. Setting this option to {{false}} allows for sorting all files first, and then limit the poll. Mind that this requires a higher memory usage as all file details are in memory to perform the sorting. |
| {{minDepth}} | 0 | *Camel 2.8*: The minimum depth to start processing when recursively processing a directory. Using {{minDepth=1}} means the base directory. Using {{minDepth=2}} means the first sub directory. This option is supported by [FTP|FTP2] consumer from *Camel 2.8.2, 2.9* onwards. |
| {{maxDepth}} | {{Integer.MAX_VALUE}} | *Camel 2.8:* The maximum depth to traverse when recursively processing a directory. This option is supported by [FTP|FTP2] consumer from *Camel 2.8.2, 2.9* onwards. |
| {{processStrategy}} | {{null}} | A pluggable {{org.apache.camel.component.file.GenericFileProcessStrategy}} allowing you to implement your own {{readLock}} option or similar. Can also be used when special conditions must be met before a file can be consumed, such as a special _ready_ file exists. If this option is set then the {{readLock}} option does not apply. |
| {{startingDirectoryMustExist}} | {{false}} | *Camel 2.5:* Whether the starting directory must exist. Mind that the {{autoCreate}} option is default enabled, which means the starting directory is normally auto created if it doesn't exist. You can disable {{autoCreate}} and enable this to ensure the starting directory must exist. Will thrown an exception if the directory doesn't exist. |
| {{pollStrategy}} | {{null}} | A pluggable {{org.apache.camel.PollingConsumerPollStrategy}} allowing you to provide your custom implementation to control error handling usually occurred during the {{poll}} operation *before* an [Exchange] have been created and being routed in Camel. In other words the error occurred while the polling was gathering information, for instance access to a file network failed so Camel cannot access it to scan for files. The default implementation will log the caused exception at {{WARN}} level and ignore it. |
| {{sendEmptyMessageWhenIdle}} | {{false}} | *Camel 2.9:* If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead. |
| {{consumer.bridgeErrorHandler}} | {{false}} | *Camel 2.10:* Allows for bridging the consumer to the Camel routing [Error Handler], which mean any exceptions occurred while trying to pickup files, or the likes, will now be processed as a message and handled by the routing [Error Handler]. By default the consumer will use the {{org.apache.camel.spi.ExceptionHandler}} to deal with exceptions, that by default will be logged at WARN/ERROR level and ignored. See further below on this page fore more details, at section _How to use the Camel error handler to deal with exceptions triggered outside the routing engine_. |
| {{scheduledExecutorService}} | {{null}} | *Camel 2.10:* Allows for configuring a custom/shared thread pool to use for the consumer. By default each consumer has its own single threaded thread pool. This option allows you to share a thread pool among multiple file consumers. |
| {{scheduler}} | {{null}} | *Camel 2.12:* To use a custom scheduler to trigger the consumer to run. See more details at [Polling Consumer], for example there is a [Quartz2], and [Spring] based scheduler that supports CRON expressions. |
| {{backoffMultiplier}} | {{0}} | *Camel 2.12:* To let the scheduled polling consumer backoff if there has been a number of subsequent idles/errors in a row. The multiplier is then the number of polls that will be skipped before the next actual attempt is happening again. When this option is in use then {{backoffIdleThreshold}} and/or {{backoffErrorThreshold}} must also be configured. See more details at [Polling Consumer]. |
| {{backoffIdleThreshold}} | {{0}} | *Camel 2.12:* The number of subsequent idle polls that should happen before the {{backoffMultipler}} should kick-in. |
| {{backoffErrorThreshold}} | {{0}} | *Camel 2.12:* The number of subsequent error polls (failed due some error) that should happen before the {{backoffMultipler}} should kick-in. |
{div}

...

Lets illustrate this with an example:

Code Block
java
java

    from("file://inbox?move=.done").to("bean:handleOrder");

...

If you want to delete the file after processing, the route should be:

Code Block
java
java

    from("file://inobox?delete=true").to("bean:handleOrder");

We have introduced a pre move operation to move files before they are processed. This allows you to mark which files have been scanned as they are moved to this sub folder before being processed.

Code Block
java
java

    from("file://inbox?preMove=inprogress").to("bean:handleOrder");

You can combine the pre move and the regular move:

Code Block
java
java

    from("file://inbox?preMove=inprogress&move=.done").to("bean:handleOrder");

...

So if we want to move the file into a backup folder with today's date as the pattern, we can do:

Code Block

move=backup/${date:now:yyyyMMdd}/${file:name}

...

Available as of Camel 2.9.3
The charset option allows for configuring an encoding of the files on both the consumer and producer endpoints. For example if you read utf-8 files, and want to convert the files to iso-8859-1, you can do:

Code Block

from("file:inbox?charset=utf-8")
  .to("file:outbox?charset=iso-8859-1")

You can also use the convertBodyTo in the route. In the example below we have still input files in utf-8 format, but we want to convert the file content to a byte array in iso-8859-1 format. And then let a bean process the data. Before writing the content to the outbox folder using the current charset.

Code Block

from("file:inbox?charset=utf-8")
  .convertBodyTo(byte[].class, "iso-8859-1")
  .to("bean:myBean")
  .to("file:outbox");

...

In the example below this could be a problem if the files is not in UTF-8 encoding, which would be the default encoding for read the files.
In this example when writing the files, the content has already been converted to a byte array, and thus would write the content directly as is (without any further encodings).

Code Block

from("file:inbox")
  .convertBodyTo(byte[].class, "iso-8859-1")
  .to("bean:myBean")
  .to("file:outbox");

You can also override and control the encoding dynamic when writing files, by setting a property on the exchange with the key Exchange.CHARSET_NAME. For example in the route below we set the property with a value from a message header.

Code Block

from("file:inbox")
  .convertBodyTo(byte[].class, "iso-8859-1")
  .to("bean:myBean")
  .setProperty(Exchange.CHARSET_NAME, header("someCharsetHeader"))
  .to("file:outbox");

...

If you have some issues then you can enable DEBUG logging on org.apache.camel.component.file, and Camel logs when it reads/write a file using a specific charset.
For example the route below will log the following:

Code Block

from("file:inbox?charset=utf-8")
  .to("file:outbox?charset=iso-8859-1")

And the logs:

Code Block

DEBUG GenericFileConverter           - Read file /Users/davsclaus/workspace/camel/camel-core/target/charset/input/input.txt with charset utf-8
DEBUG FileOperations                 - Using Reader to write file: target/charset/output.txt with charset: iso-8859-1

...

The sample code below produces files using the message ID as the filename:

Code Block

from("direct:report").to("file:target/reports");

To use report.txt as the filename you have to do:

Code Block

from("direct:report").setHeader(Exchange.FILE_NAME, constant("report.txt")).to( "file:target/reports");

... the same as above, but with CamelFileName:

Code Block

from("direct:report").setHeader("CamelFileName", constant("report.txt")).to( "file:target/reports");

And a syntax where we set the filename on the endpoint with the fileName URI option.

Code Block

from("direct:report").to("file:target/reports/?fileName=report.txt");

...

If you want only to consume files when a done file exists, then you can use the doneFileName option on the endpoint.

Code Block
java
java

from("file:bar?doneFileName=done");

...

However its more common to have one done file per target file. This means there is a 1:1 correlation. To do this you must use dynamic placeholders in the doneFileName option. Currently Camel supports the following two dynamic tokens: file:name and file:name.noext which must be enclosed in ${ }. The consumer only supports the static part of the done file name as either prefix or suffix (not both).

Code Block
java
java

from("file:bar?doneFileName=${file:name}.done");

...

You can also use a prefix for the done file, such as:

Code Block
java
java

from("file:bar?doneFileName=ready-${file:name}");

...

After you have written af file you may want to write an additional done file as a kinda of marker, to indicate to others that the file is finished and has been written. To do that you can use the doneFileName option on the file producer endpoint.

Code Block
java
java

.to("file:bar?doneFileName=done");

...

However its more common to have one done file per target file. This means there is a 1:1 correlation. To do this you must use dynamic placeholders in the doneFileName option. Currently Camel supports the following two dynamic tokens: file:name and file:name.noext which must be enclosed in ${ }.

Code Block
java
java

.to("file:bar?doneFileName=done-${file:name}");

Will for example create a file named done-foo.txt if the target file was foo.txt in the same directory as the target file.

Code Block
java
java

.to("file:bar?doneFileName=${file:name}.done");

Will for example create a file named foo.txt.done if the target file was foo.txt in the same directory as the target file.

Code Block
java
java

.to("file:bar?doneFileName=${file:name.noext}.done");

...

Read from a directory and write to another directory

Code Block
java
java

from("file://inputdir/?delete=true").to("file://outputdir")

Read from a directory and write to another directory using a overrule dynamic name

Code Block
java
java

from("file://inputdir/?delete=true").to("file://outputdir?overruleFile=copy-of-${file:name}")

...

Reading recursively from a directory and writing to another

Code Block
java
java

from("file://inputdir/?recursive=true&delete=true").to("file://outputdir")

Listen on a directory and create a message for each file dropped there. Copy the contents to the outputdir and delete the file in the inputdir. Will scan recursively into sub-directories. Will lay out the files in the same directory structure in the outputdir as the inputdir, including any sub-directories.

Code Block

inputdir/foo.txt
inputdir/sub/bar.txt

Will result in the following output layout:

Code Block

outputdir/foo.txt
outputdir/sub/bar.txt

...

If you want to store the files in the outputdir directory in the same directory, disregarding the source directory layout (e.g. to flatten out the path), you just add the flatten=true option on the file producer side:

Code Block
java
java

from("file://inputdir/?recursive=true&delete=true").to("file://outputdir?flatten=true")

Will result in the following output layout:

Code Block

outputdir/foo.txt
outputdir/bar.txt

...

Camel will by default move any processed file into a .camel subdirectory in the directory the file was consumed from.

Code Block
java
java

from("file://inputdir/?recursive=true&delete=true").to("file://outputdir")

Affects the layout as follows:
before

Code Block

inputdir/foo.txt
inputdir/sub/bar.txt

after

Code Block

inputdir/.camel/foo.txt
inputdir/sub/.camel/bar.txt
outputdir/foo.txt
outputdir/sub/bar.txt

Read from a directory and process the message in java

Code Block

from("file://inputdir/").process(new Processor() {
  public void process(Exchange exchange) throws Exception {
    Object body = exchange.getIn().getBody();
    // do some business logic with the input body
  }
});

...

Using a single route, it is possible to write a file to any number of subdirectories. If you have a route setup as such:

Code Block

  <route>
    <from uri="bean:myBean"/>
    <to uri="file:/rootDirectory"/>
  </route>

You can have myBean set the header Exchange.FILE_NAME to values such as:

Code Block

Exchange.FILE_NAME = hello.txt => /rootDirectory/hello.txt
Exchange.FILE_NAME = foo/bye.txt => /rootDirectory/foo/bye.txt

...

In this sample we want to move consumed files to a backup folder using today's date as a sub-folder name:

Code Block
java
java

from("file://inbox?move=backup/${date:now:yyyyMMdd}/${file:name}").to("...");

...

Camel supports Idempotent Consumer directly within the component so it will skip already processed files. This feature can be enabled by setting the idempotent=true option.

Code Block
java
java

from("file://inbox?idempotent=true").to("...");

Camel uses the absolute file name as the idempotent key, to detect duplicate files. From Camel 2.11 onwards you can customize this key by using an expression in the idempotentKey option. For example to use both the name and the file size as the key

Code Block
xml
xml

  <route>
    <from uri="file://inbox?idempotent=true&amp;idempotentKey=${file:name}-${file:size}"/>
    <to uri="bean:processInbox"/>
  </route>

By default Camel uses a in memory based store for keeping track of consumed files, it uses a least recently used cache holding up to 1000 entries. You can plugin your own implementation of this store by using the idempotentRepository option using the # sign in the value to indicate it's a referring to a bean in the Registry with the specified id.

Code Block
xml
xml

   <!-- define our store as a plain spring bean -->
   <bean id="myStore" class="com.mycompany.MyIdempotentStore"/>

  <route>
    <from uri="file://inbox?idempotent=true&amp;idempotentRepository=#myStore"/>
    <to uri="bean:processInbox"/>
  </route>

Camel will log at DEBUG level if it skips a file because it has been consumed before:

Code Block

DEBUG FileConsumer is idempotent and the file has been consumed before. Will skip this file: target\idempotent\report.txt

...

And yes then we just need to refer to the jpaStore bean in the file consumer endpoint using the idempotentRepository using the # syntax option:

Code Block
xml
xml

  <route>
    <from uri="file://inbox?idempotent=true&amp;idempotentRepository=#jpaStore"/>
    <to uri="bean:processInbox"/>
  </route>

...

And then we can configure our route using the filter attribute to reference our filter (using # notation) that we have defined in the spring XML file:

Code Block
xml
xml

  <!-- define our filter as a plain spring bean -->
  <bean id="myFilter" class="com.mycompany.MyFileFilter"/>
  
 <route>
    <from uri="file://inbox?filter=#myFilter"/>
    <to uri="bean:processInbox"/>
  </route>

...

And then we can configure our route using the sorter option to reference to our sorter (mySorter) we have defined in the spring XML file:

Code Block
xml
xml

   <!-- define our sorter as a plain spring bean -->
   <bean id="mySorter" class="com.mycompany.MyFileSorter"/>

  <route>
    <from uri="file://inbox?sorter=#mySorter"/>
    <to uri="bean:processInbox"/>
  </route>

...

Camel supports pluggable sorting strategies. This strategy it to use the File Language to configure the sorting. The sortBy option is configured as follows:

Code Block

sortBy=group 1;group 2;group 3;...

Where each group is separated with semi colon. In the simple situations you just use one group, so a simple example could be:

Code Block

sortBy=file:name

This will sort by file name, you can reverse the order by prefixing reverse: to the group, so the sorting is now Z..A:

Code Block

sortBy=reverse:file:name

As we have the full power of File Language we can use some of the other parameters, so if we want to sort by file size we do:

Code Block

sortBy=file:length

You can configure to ignore the case, using ignoreCase: for string comparison, so if you want to use file name sorting but to ignore the case then we do:

Code Block

sortBy=ignoreCase:file:name

You can combine ignore case and reverse, however reverse must be specified first:

Code Block

sortBy=reverse:ignoreCase:file:name

In the sample below we want to sort by last modified file, so we do:

Code Block

sortBy=file:modifed

And then we want to group by name as a 2nd option so files with same modifcation is sorted by name:

Code Block

sortBy=file:modifed;file:name

Now there is an issue here, can you spot it? Well the modified timestamp of the file is too fine as it will be in milliseconds, but what if we want to sort by date only and then subgroup by name?
Well as we have the true power of File Language we can use the its date command that supports patterns. So this can be solved as:

Code Block

sortBy=date:file:yyyyMMdd;file:name

Yeah, that is pretty powerful, oh by the way you can also use reverse per group, so we could reverse the file names:

Code Block

sortBy=date:file:yyyyMMdd;reverse:file:name

...

Info
titleImportant when using consumer.bridgeErrorHandler

When using consumer.bridgeErrorHandler, then interceptors, OnCompletions does not apply. The Exchange is processed directly by the Camel error handler Error Handler, and does not allow prior actions such as interceptors, onCompletion to take action.

...

This component has log level TRACE that can be helpful if you have problems.

Include Page
Endpoint See Also
Endpoint See Also