what is the max size of the file to FTP in webMethods

Hi guys,

Can anybody have an idea of max file size by IS. if yes, how to handle it.

Thanks in Advance,
Sha

You should always use streams for processing large files via FTP channel.

Mostly the large file FTP WORKS with the following setting:

JAVA_MIN_MEM=1024M
JAVA_MAX_MEM=1280M
JAVA_MEMSET=“-ms${JAVA_MIN_MEM} -mx${JAVA_MAX_MEM}”

The main problem is the single large heap size requested by the flow service

Also use 64 bit JVM that may be more suitable for such problems

HTH,
RMG

HTH,
RMG