It was a requirement for a public selection of an interoperability solution at the time.

I remembered when we talked about your initiative at Ready 2025, and I showed you how Apache Camel did it, and I thought it looked similar. Apache Camel is the best at programmatic integration on the market. But I liked the way you did it with your library. Great job!

Apache camel looks like this:

import org.apache.camel.builder.RouteBuilder;

public class FileRouteBuilder extends RouteBuilder {
    @Override
    public void configure() throws Exception {
        // Step 1: Consume text files from the input folder
        from("file:data/input?noop=true") // noop=true leaves source files unchanged
            .log("Processing file: ${header.CamelFileName}")
            
            // Step 2: Route based on file content (EIP Content Based Router)
            .choice()
                .when(body().contains("URGENT"))
                    .log("Routing to critical queue...")
                    .to("file:data/output/critical")
                .otherwise()
                    .log("Routing to regular queue...")
                    .to("file:data/output/regular")
            .end(); // Close choice block
    }
}
Yuri Marx · May 25 go to post

Yes, if you implement the Bank Helper Class to convert from Global String Stream to the Client Message Body like described into this article

Yuri Marx · May 22 go to post

Thank you for reviewing my applications, Robert; I always look forward to it.

Yuri Marx · May 14 go to post

Article Parcelc was translated to portuguese and spanish. So, I claim translation bunus

Yuri Marx · May 12 go to post

Yes, I configured IPC_LOCK using a root privilege into the image construction and worked, thanks

Yuri Marx · Apr 16 go to post

Great article! And you use the most popular languages with globals, including java, python and javascript/node

Yuri Marx · Jan 18 go to post

Write the id property into your objectscript class, the boolean it is ok

Yuri Marx · Dec 16, 2025 go to post

I am very happy to be recognized as a reference in knowledge of the best technology and community in the world, the Intersystems community. I thank @Robert Cemper for being my inspiration and the entire Intersystems DC staff.