Hi all, I have a Java program that connects to a SAS ObjectServer and runs SAS jobs using a String that's submitted via the SASLanguageService. For our project, some parts of the job will be tracked using the sysecho <string> statement, and it sends the specified String to the IOM Client. My question is, how do I retrieve that String? I'm not sure which interface to use. I've tried using an implementation of the sasLanguage events listener, but it doesn't catch the SYSECHO string. Thanks! Edit: Figured it out... ILanguageEvents_1_1 interface has the additional globalStatementComplete event handlers that catch it
... View more