LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  LAE Error Code: brain.node.ls.brain.node.brainpython.python2implem-entationfile.55

    Employee
    Posted 05-08-2014 09:31

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: lae_errors

    This post has been created for discussion of error code brain.node.ls.brain.node.brainpython.python2implem-entationfile.55.

    Please reply to this thread with any description of error conditions, diagnostic information, and recommended resolutions.


  • 2.  RE: LAE Error Code: brain.node.ls.brain.node.brainpython.python2implem-entationfile.55

    Employee
    Posted 05-23-2014 01:42

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Tim Meagher

    This is an auto-generated error from Python nodes within the LAE.

    Therefore, this error could be due to any of a number of problems if you have written your own Python node.

    However, the most common cause of this specific auto-generated error code is when using a Static Data node, and the data within a line of the "StaticData" parameter in the node does not match the metadata specified.
    The error should inform you which line in the StaticData node has the error, how many fields it is expecting to see (i.e. what the metadata describes) and how many fields it has seen on that line.

    Bear in mind that the StaticData parameter needs to be comma separated.
    If any fields contain a comma, then the field needs to be surrounded with double quote (") characters - for example the following is acceptable:

    firstField:string,secondField:string
    First,"Second,Field,Value"
    If a field value needs to contain a quote, then the entire field needs to be quoted, and the quote character itself needs to be preceeded by an additional quote character
    For example if you wanted to have two fields, one with the value:
    "Surrounded in Quotes"
    And the other with the value:
    Just one (") quote
    Then you could do this using the following:

    firstField:string,secondField:string
    """Surrounded in Quotes""","Just one ("") quote"