Skip to Content

 isCOBOL General

How can I monitor a jvm started on a remote computer box?

You can run JvisualVM to monitor, troubleshoot, and profile your jvm when using isCOBOL Server. There are detailed instructions in the isCOBOL Application Server documentation, in a chapter called "Tuning and monitoring isCOBOL Server with JvisualVM... Read More

How to set switches with isCOBOL

A common practice in COBOL programming is to manage switches to change the behavior of the program. In isCOBOL there are four ways to accomplish this task: In your configuration file using the "iscobol.switches=" configuration variable You can... Read More

How can I read an Excel spreadsheet from COBOL?

You can use the attached code as a framework to read your Excel spreadsheet. The sample reads an Excel spreadsheet and display the contents using the Apache POI, installed with your isCOBOL runtime. Compile and run it, passing the name of your... Read More

Send SMS from isCOBOL using Twilio

If you find yourself needing to send SMS messages from an isCOBOL application, there are several ways to accomplish this by using a third-party API. For example, Twilio offers a widely-used and robust solution. To use the Twilio API, you'll... Read More

Get the week number of the year for a date

One way to get the week number of a passed date is to use intrinsic functions. Using several functions available in isCOBOL, you can get the Julian date, which will give you the date's number of days in the year. Divide this by 7 and you'll... Read More

Results 11 - 20 of 100