I have an idea for a service. It would accept incoming network connections but instead of launching a cobol-thread to process the socket that gets created, it would need to start a separate process, with a new runcbl session. I've figured out how to pass enough information that the new-process could open a socket back to the service, and together they could handle the communication, but this would basically duplicate all the traffic going in/out of this server, because the information would have to be copied back and forth between the service and the new runtime. Do-able, but inefficient. Thus the desire to pass a socket handle to the newly started runtime and let it handle the communication by itself.
This will normally be running on a linux server, but it would be nice if windows was also an option.
#CSOCKET