Parsing a name value file that has the value that contains newlines, the parser will error out with the following in the cca.log:
com.ca.acm.server.parse.YaccParser (YaccParser.java:151) - parser error: line ### column ## text [
] (syntax error)
com.ca.acm.server.parse.ParserEngine (ParserEngine.java:200) - File cant be parsed... Parser: com.ca.acm.server.parse.parser.NVCommentedParser Lexer: com.ca.acm.server.parse.lexer.NVHashLexer
The format of a typical name-value is :
myName = myValue
The wrapping of a newline would show:
myName = myValue1,
myValue2,
myValue3,
myValue4