Hello, While investigating this issue further, I found a CmisBaseLexer.g file in the chemistry-opencmis-server-support package in the src/main/antlr3/org/apache/chemistry/opencmis/server/support/query directory.
The lines in this file that drew my interest are as follows: ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'_'|'0'..'9'|':')* ; Am I on the right track thinking that I can add the '/' character (e.g. ('a'..'z'|'A'..'Z'|'_'|'/') ) to the line above, rebuild the server support opencmis project and this will solve my parsing problem? Thanks in advance for any and all assistance!