Customer Portal

Comments 1

  • Avatar
    oldforum
    0
    Comment actions Permalink
    Hi,

    there is a limit for the length of String field - currently 32k. The problem is caused by parser which has internal buffer for parsing fields set to 512 characters max. This is hardcoded value.
    One more limitation is that curently the max record length is limited to 8192bytes. But can be change the same way as the parser limitation - see below:

    I can fix the problem for you (would take a day or two to process), or you can go to org.jetel.data.Defaults
    and change FIELD_BUFFER_LENGTH (under DataParser internal class) constant to something like 2048 or higher - currently is 512.
    Then recompile the source code package.

Please sign in to leave a comment.