M
Mike Fechner
Guest
Hey Geir Otto, it’s my experience, that when using any of the classes from the OpenEdge procedure libraries, you can no longer use consuming r-code across OpenEdge releases (sometimes not even across service packs). Just comparing the source code of the OpenEdge.Core.String consultingwerk/ADE-Sourcecode The String is implementing a new Interface, adds two more properties, three new methods, … this all breaks compatibility of the r-code of the consuming code. You will have to compile on 11.6 if running on 11.6. And be prepared, that when on 11.7.3 you’re referencing method public void Trim(input pCharacter as character): in your code, it will break on 11.6 as the method was just not there yet. If you need to develop on 11.7 and deploy on 11.6, better setup Jenkins with Integration build on both OpenEdge releases. If you are not using PASOE and Web Handlers, you might get away with using the 11.7 versions of the OpenEdge.Core classes on 11.6 … but if you’re using Web handlers or the http client, chances are high that you’ll be breaking something. Cheers, Mike
Continue reading...
Continue reading...