<?xml version="1.0"?>

<rss version="2.0">


<channel>
<title>Home - All Categories - isCOBOL General  </title>
<link>https://support.veryant.com/phpkb/category.php?id=3</link>
<description>This RSS Feed contains Articles of Category in the knowledge base. You can click on the title to view its content. Powered by PHPKB (https://www.phpkb.com)</description>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=237</guid>
										<title>How do I resolve the error &quot;java.lang.NoClassDefFoundError&quot; or &quot;java.lang.ClassNotFoundException&quot;?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=237</link>
										<description><![CDATA[These errors mean that a java class was not found by the JVM. It can be returned at startup if the main program name has not been passed correctly in the command line (remember that Java is case-sensitive and the .class extension should be omitted)...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=357</guid>
										<title>Managing High-DPI Behavior in isCOBOL UIs (Windows and Multi-Platform Options)</title>
										<link>https://support.veryant.com/phpkb/article.php?id=357</link>
										<description><![CDATA[Starting with Java 11, the Java runtime is DPI-aware by default.On displays configured above 96 DPI (for example 120, 150 or 200 DPI), Java automatically scales UI elements. For standard isCOBOL GUI applications this may result in:  resized UI...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=294</guid>
										<title>How to perform a case-insensitive search by key on ISAM files</title>
										<link>https://support.veryant.com/phpkb/article.php?id=294</link>
										<description><![CDATA[ a {     text-decoration: none;     color: #464feb; } tr th, tr td {     border: 1px solid #e6e6e6; } tr th {     background-color: #f5f5f5; }   The START I/O statement supports the WHILE LIKE clause, which allows you to search for records that match...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=293</guid>
										<title>Activating and Checking for the isCOBOL License</title>
										<link>https://support.veryant.com/phpkb/article.php?id=293</link>
										<description><![CDATA[The iscobol.properties file has two main uses: as a license file and as a configuration file for the compiler or the runtime framework.Â Â During installation, the setup asks if the user wants to activate the licenses or skip the activation.  If the...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=273</guid>
										<title>Remapping a file name hard-coded in a SELECT statement using an external variable.</title>
										<link>https://support.veryant.com/phpkb/article.php?id=273</link>
										<description><![CDATA[ a {     text-decoration: none;     color: #464feb; } tr th, tr td {     border: 1px solid #e6e6e6; } tr th {     background-color: #f5f5f5; }   If your program uses a hard-coded value for the data file name, you can define an alternate name as an...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=261</guid>
										<title>How to create temporary files in memory to improve performance.</title>
										<link>https://support.veryant.com/phpkb/article.php?id=261</link>
										<description><![CDATA[ a {     text-decoration: none;     color: #464feb; } tr th, tr td {     border: 1px solid #e6e6e6; } tr th {     background-color: #f5f5f5; }   Sometimes, a COBOL application needs to store data in temporary files. These files are typically deleted...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=254</guid>
										<title>How to read a data written with a different encoding.</title>
										<link>https://support.veryant.com/phpkb/article.php?id=254</link>
										<description><![CDATA[If you need to read data from a file written in a different encoding than the default you can use the attached java function to translate the data from the source encoding to the destination encoding.Â  The attached COBOL program reads a sequential...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=234</guid>
										<title>I still get the error :</title>
										<link>https://support.veryant.com/phpkb/article.php?id=234</link>
										<description><![CDATA[It&rsquo;s very important to keep in mind that the isCOBOL configuration is built up by merging multiple files and settings. The runtime framework searches for configuration properties in the following list of places: The configuration file specified...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=304</guid>
										<title>How to create your own type definitions and reuse them</title>
										<link>https://support.veryant.com/phpkb/article.php?id=304</link>
										<description><![CDATA[You can create a simple or complex type definition that can be consistently and easily reused with other variables without having to copy and paste the contents of the original one. This is done using the TYPEDEF clause in the data description. Â ...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=263</guid>
										<title>How can I read data correctly from a line-sequential file that has a different encoding from the one used by isCOBOL?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=263</link>
										<description><![CDATA[To solve this problem you can normally read the line-sequential file, then before using the contents of the record you can call a specific function for the translation. If you&rsquo;re using isCOBOL 2023R1 or later, you can use the C$STRING_CONVERT...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=351</guid>
										<title>How to identify and kill “orphan” application server connections</title>
										<link>https://support.veryant.com/phpkb/article.php?id=351</link>
										<description><![CDATA[Sometimes a client connection can get disconnected from the application server, but still run in a loop in the background. This might happen, for instance, if a program crashes or is killed &lsquo;ungracefully&rsquo;. The application server&rsquo;s...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=349</guid>
										<title>Can a COBOL procedural program be INVOKED with an array of objects instead of a standard CALL with USING?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=349</link>
										<description><![CDATA[If you prefer to use OOP syntax to invoke a COBOL procedural program and pass an array of objects as parameters rather than the standard COBOL CALL statement with USING, isCOBOL provides a feasible approach. First, the isCOBOL class com.iscobol.java...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=320</guid>
										<title>How can I generate QR codes from COBOL?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=320</link>
										<description><![CDATA[QR codes can be generated as bitmap files using the ZXing (Zebra Crossing) barcode scanning library.All the file types supported by the W$BITMAP routine can be used. Here are the steps to compile and run the sample COBOL program (QRSAMPLE.cbl) which...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=348</guid>
										<title>How to automatically terminate a thin-client session that has been idle for a specific period of time.</title>
										<link>https://support.veryant.com/phpkb/article.php?id=348</link>
										<description><![CDATA[It is often necessary and desirable to prevent the misuse of user licenses or to avoid idle thin-client threads on the isCOBOL Application server. Automatically terminating a thin-client session that has been left idle on an accept statement of a...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=207</guid>
										<title>What does the error "NO X11 DISPLAY" mean?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=207</link>
										<description><![CDATA[ When you get this error:     "No X11 DISPLAY variable was set, but this program performed an operation which requires it."  It means that isCOBOL is trying to access the AWT/SWING GUI Interface and your system doesn&#39;t have that.   If your...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=197</guid>
										<title>When can I get the "java.net.SocketException: Permission denied:connect" message? And how can it be avoided?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=197</link>
										<description><![CDATA[ The "java.net.SocketException: Permission denied: connect" exception message may happen when you are working in Application Server or with a client/server environment via VPN connection.   This message is returned because isCOBOL uses the IPv4 type...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=218</guid>
										<title>What can I use to perform an email validation during entry-field accept?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=218</link>
										<description><![CDATA[ You can use regular expressions in your entry-field to validate the contents accepted, and return an error message if necessary. The following example shows how to declare regular expression on a screen section entry-field:        ...            03...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=224</guid>
										<title>How can I avoid the "java.lang.OutOfMemoryError: Metaspace" error?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=224</link>
										<description><![CDATA[ This error means that the Metaspace memory limit of the JVM has been reached. This non-heap memory is used to store class descriptions, so this error may appear when running huge applications.   You can increase the Metaspace memory by adding two...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=211</guid>
										<title>How can I encode a URL String?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=211</link>
										<description><![CDATA[ You can work with the OOP statements using the Java class named "java.net.URLEncoder", available with the Java Runtime, useful to encode a URL string: http://docs.oracle.com/javase/7/docs/api/java/net/URLEncoder.html   The following is an example of...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=344</guid>
										<title>How to read QR codes</title>
										<link>https://support.veryant.com/phpkb/article.php?id=344</link>
										<description><![CDATA[ In KB article #320, we showed how to generate a QR code in your COBOL program. In this article, we&#39;ll show you how to call the attached program to generate or read a QR code.   Like the earlier article, you must first download 2 jar files, and...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=219</guid>
										<title>Working with sequential files on Pipes</title>
										<link>https://support.veryant.com/phpkb/article.php?id=219</link>
										<description><![CDATA[Piping can be used for files declared as: a) a printer file (ASSIGN TO PRINTER) b) a line sequential file (assuming to compile with -flsu)  In all other cases (relative file, binary sequential file etc) piping it is not allowed.  Here a simple...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=176</guid>
										<title>Does isCOBOL support Crystal Reports or other Report Writers?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=176</link>
										<description><![CDATA[ isCOBOL can run any Crystal Reports executable with a CALL "C$SYSTEM" or similar library routine, passing a text or comma delimited file with basic level information.     We have had success in the past using the ReportViewerBean included in the...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=201</guid>
										<title>How can I monitor a jvm started on a remote computer box?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=201</link>
										<description><![CDATA[ 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...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=339</guid>
										<title>How to set switches with isCOBOL</title>
										<link>https://support.veryant.com/phpkb/article.php?id=339</link>
										<description><![CDATA[ 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...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=120</guid>
										<title>How can I read an Excel spreadsheet from COBOL?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=120</link>
										<description><![CDATA[ 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...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=337</guid>
										<title>Send SMS from isCOBOL using Twilio</title>
										<link>https://support.veryant.com/phpkb/article.php?id=337</link>
										<description><![CDATA[ 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&#39;ll...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=117</guid>
										<title>How can I tell what changes were made in the isCOBOL latest update?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=117</link>
										<description><![CDATA[ Each installation setup includes a README. This README file lists all the new features in that release.  There is also a file named CHANGELOG.txt that lists all changes in the release, in order of build and ID number. For instance, if you update...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=98</guid>
										<title>Do I need to worry about the compile warning "Note: MYPROG.java uses unchecked or unsafe operations?"</title>
										<link>https://support.veryant.com/phpkb/article.php?id=98</link>
										<description><![CDATA[ In isCOBOL you may get a Java note saying something similar to   "... uses unchecked or unsafe operations."  This warning is displayed when you execute code which the Java compiler considers to be lacking in error-checking, or potentially unsafe in...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=336</guid>
										<title>Get the week number of the year for a date</title>
										<link>https://support.veryant.com/phpkb/article.php?id=336</link>
										<description><![CDATA[ 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&#39;s number of days in the year. Divide this by 7 and you&#39;ll...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=309</guid>
										<title>How do I point my installed isCOBOL to a different Java location?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=309</link>
										<description><![CDATA[ When you install isCOBOL, it asks you for the location of the Java installation, and saves this path in a file or files. Then all the executable wrappers installed in the %isCOBOL%/bin folder look for this file to find Java.  If you install a new...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=80</guid>
										<title>How do I set iscobol.file.index.FileName with variable file name assignments?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=80</link>
										<description><![CDATA[ Question:   The ASSIGN TO name in my SELECT statement is a variable. How can I set iscobol.file.index.FileName in the properties file when the file name is determined by the program at run time?   Answer:   The solution is to set the iscobol.file...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=90</guid>
										<title>Can the file system (iscobol.file.index) be set programmatically?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=90</link>
										<description><![CDATA[ Question:   Can I set the iscobol.file.index or iscobol.file.index.FileName variables inside my COBOL program?  My application reads a file which has information about which file system to use for each data file. Some data files are Jisam. Others...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=270</guid>
										<title>How to write custom information inside isCOBOL log file</title>
										<link>https://support.veryant.com/phpkb/article.php?id=270</link>
										<description><![CDATA[isCOBOL supports a library routine named "C$WRITELOG". This routine will add custom information to an isCOBOL log file. When running with the configuration iscobol.tracelevel set to a value greater than 0, the parameter that is sent to C$WRITELOG...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=70</guid>
										<title>How do I write my own replacement for a C$ library routine?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=70</link>
										<description><![CDATA[ Question:   Suppose that isCOBOL does not support a particular C$ library routine, such as C$GETPID, and I want to write my own so I won&#39;t need to change all of my existing calls. How do I do that?    Answer:   First, let us know which library...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=77</guid>
										<title>How do I change the icon in the upper left corner of the Window?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=77</link>
										<description><![CDATA[ Question:  The icon in the upper left corner of the Window is a blue circle containing the letters "is". How can I replace this with my own icon?    Answer:  If you want to display the Java icon instead of the isCOBOL icon, you can set iscobol.gui...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=87</guid>
										<title>Can Veryant recommend a good Web site to find 3rd party JavaBeans?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=87</link>
										<description><![CDATA[ There are many JavaBean graphical controls available that you can include in a COBOL screen section. For example, ComponentSource has a section devoted to Java components, at http://www.componentsource.com/features/java-components/index.html.   ...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=257</guid>
										<title>Two options to get the working directory</title>
										<link>https://support.veryant.com/phpkb/article.php?id=257</link>
										<description><![CDATA[There are two library routines that allow to retrieve this information.  1. C$CHDIR called using a blank data-item       initialize curr-dir.|curr-dir pic x(256).      call  "C$CHDIR"  using  curr-dir.      display "Current directory: " curr-dir.   ...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=276</guid>
										<title>How to replace a text within a string with a different length of text.</title>
										<link>https://support.veryant.com/phpkb/article.php?id=276</link>
										<description><![CDATA[Usually to replace a text in a string you use the "inspect replacing" statement. But with this kind of approach the original text and the new text must have the same length.  To avoid this problem you can use the "C$REPLACE_ALL" routine.  This...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=63</guid>
										<title>Is there any equivalent to COPY RESOURCE?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=63</link>
										<description><![CDATA[ Question:   I got the following compiler warning. Is there any equivalent for the COPY RESOURCE functionality?     --W: Directive ignored: COPY RESOURCE; file = smSWLOGON.CO, line = 1783, col     Answer:   Prior to version 2022R1, the isCOBOL...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=64</guid>
										<title>What is the best way to profile an isCOBOL program?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=64</link>
										<description><![CDATA[ Question:   My program displays a menu and I can press down-arrow 8 times and sit there and watch while the menu item selection moves down to catch up. I want to profile my program to see what operations are accounting for the slow user interface...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=167</guid>
										<title>Does isCOBOL support C$REDIRECT?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=167</link>
										<description><![CDATA[C$REDIRECT is used to assign a different file I/O handler to a file. There are several options to do the same in isCOBOL.  In version 2022R2 and later, you can write a hook program using this configuration to change the file handler class in the hook...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=57</guid>
										<title>How do I compile for compatibility with older versions of Java?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=57</link>
										<description><![CDATA[ Question:  When I run my program with an older version of the Java runtime environment I get the following error:    java.lang.UnsupportedClassVersionError: ABCPROG has been compiled by a more recent version of the Java Runtime (class file version...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=49</guid>
										<title>Does isCOBOL APS run on z/OS?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=49</link>
										<description><![CDATA[ Question:   What products in isCOBOL run on z/OS?   Answer:   The JDK on z/OS is called "IBM SDK for z/OS Java Technology Edition", which you can download here.  The following isCOBOL products and features are implemented as pure Java classes with...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=45</guid>
										<title>Can isCOBOL access a DLL or .so that is in a JAR file?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=45</link>
										<description><![CDATA[ Question:   Can I include DLLs and/or .so files in the same JAR file as my application? Will the application be able to call those DLLs or shared objects in the JAR file? If not, then what is the best way to distribute DLLs with my application if I...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=30</guid>
										<title>What Micro Focus library routines are supported?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=30</link>
										<description><![CDATA[ Since we are constantly adding support for Micro Focus library routines, the best way to get a current list of them is to look in isCOBOL&#39;s documentation. You&#39;ll find a "Transitioning from Microfocus" book with a section for "Library...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=42</guid>
										<title>Does isCOBOL support C$XML or other XML interfaces?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=42</link>
										<description><![CDATA[ Question:   My application calls the ACUCOBOL-GT library routine named C$XML. It is supported? What are other ways to handle XML?  Answer:  Though isCOBOL supports XML streams natively in several powerful methods, it also supports C$XML specifically...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=27</guid>
										<title>How do I use conditional compilation?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=27</link>
										<description><![CDATA[ Question:   How do I use compiler directives to conditionally include or exclude sections of code?   Answer:   Here are some examples of conditional compilation:   EVALUATE and WHEN in a bug test program:     id division.    program-id. chinese.   ...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=41</guid>
										<title>How can I use the F10 key in my application without it changing the keyboard focus?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=41</link>
										<description><![CDATA[ Question:   My application uses the F10 key. However, with isCOBOL the F10 key seems to have some other function such as changing the keyboard focus to the System menu or desktop.   Answer:   By default, the F10 key activates the menu bar (if there...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=29</guid>
										<title>Can I use directory paths in CALL names?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=29</link>
										<description><![CDATA[Question:     My application source contains files that have the same name but are in different directories, e.g. dir1/progA.cbl, dir2/progA.cbl. I rely on the ability to specify paths in the CALL names in order to differentiate the programs, e.g....]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=28</guid>
										<title>What is the easiest and/or best way to convert a legacy text-based user interface to a web front end?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=28</link>
										<description><![CDATA[ Question:   If I have an application that uses text-mode (no graphical controls) DISPLAY and ACCEPT statements with no screen sections, then what are my options for getting my application to run within a web browser?    Answer:   isCOBOL&#39;s...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=55</guid>
										<title>What algorithm does isCOBOL use to load framework properties (runtime config variables)?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=55</link>
										<description><![CDATA[In isCOBOL, the runtime configuration file is a Java properties file and is referred to in the documentation as the isCOBOL framework properties file.    The Java virtual machine allows you to specify properties with the -D command line option. The...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=22</guid>
										<title>Where can I learn more about Classpath, the Java class loader, JDK tools and utilities?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=22</link>
										<description><![CDATA[ Veryant&#39;s documentation is a good place to start. There is a section on isCOBOL and Java in the isCOBOL Evolve documentation, under "Introduction", "The Basics". One of the chapters is about class loading. The 2022 version of that documentation...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=330</guid>
										<title>Guide to Updating the isCOBOL Software Version in a Standalone,  Fat Client or Thin Client Production Environment</title>
										<link>https://support.veryant.com/phpkb/article.php?id=330</link>
										<description><![CDATA[ A common topic to all three scenarios is the update of the license. When your update is for a later year release (ex: 2021R# to 2022R#), then you need to request licenses for your products for that year and update the properties file containing your...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=18</guid>
										<title>What are the key technical advantages of isCOBOL?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=18</link>
										<description><![CDATA[ What differentiates isCOBOL from other COBOLs? What makes isCOBOL better?  Key Technical Differentiators.  Below are the 5 key differentiators that set isCOBOL technology apart from the competition.  isCOBOL Key Technical Differentiators  Core...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=138</guid>
										<title>Where can I find more information on A$ENCRYPT and A$DECRYPT?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=138</link>
										<description><![CDATA[Question: Where can I find more information on A$ENCRYPT and A$DECRYPT? I am getting errors involving &#39;padding&#39; and &#39;multiple of 8 bytes&#39; when I use these routines. Answer: The size of the key passed to A$ENCRYPT or A$DECRYPT must be...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=251</guid>
										<title>Is there any way to direct the output from the "Print Screen" keyboard key directly to a printer?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=251</link>
										<description><![CDATA[ The "PrintScreen" key is handled directly by the OS and cannot be referenced in COBOL. However you can write an isCOBOL program that could be run as hotkey program. For example, this setting in your properties file will run the program PRINTSCREEN...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=256</guid>
										<title>Did you know isCOBOL IDE allows you to easily understand how to invoke a method in a Java Class?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=256</link>
										<description><![CDATA[IsCOBOL supports OO (Object Oriented syntax) that allows you to invoke a Method in a Java Class. To have additional help on writing the cobol code, isCOBOL IDE helps with its integrated isCOBOL Editor. For example, to know the operating system where...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=259</guid>
										<title>Did you know you could set a background image from isCOBOL IDE&amp;#39;s painter?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=259</link>
										<description><![CDATA[Let&#39;s see how to do so.  From the isCOBOL IDE: 1. Click on the screen title bar to see the list of the properties in the &#39;Properties&#39; view.  2. Choose the &#39;background image&#39; in the prop erties&#39; list 3. Click on &#39;image file...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=281</guid>
										<title>How to programmatically set the attributes for PDFs?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=281</link>
										<description><![CDATA[ In the 2016 R1 release, isCOBOL added the ability to configure attributes of a program-generated PDF file. To set the default attributes for PDF prints in your programs, use the configuration variables that start with "iscobol.print.attribute".  For...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=316</guid>
										<title>How can I tell if my application is running in the WebClient environment or another environment?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=316</link>
										<description><![CDATA[ A call to C$GETRUNENV will return your environment, with possible values defined in iscobol.def.  Because the user-id for sessions running in WebClient will always be the user-id of the account that started the WebClient, you may need to create a...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=317</guid>
										<title>How can I use the Call/Cancel custom HOOK program to get the start and end time of every CALLed program?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=317</link>
										<description><![CDATA[ The iscobol.call_cancel.hook runtime property can be used to provide the name of a custom class that will intercept the before and after moments of every CALL and CANCEL statement during a runtime session.  That class would be written as an...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=19</guid>
										<title>Does isCOBOL work with Flexus COBOL sp2?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=19</link>
										<description><![CDATA[Question:     What work is necessary to use Flexus COBOL sp2? Has it been tested?         Answer:           Yes, this has been tested and a customer application with GUI calls to SP2 functions has successfully run with isCOBOL.              Set...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=7</guid>
										<title>Should I use JISAM or Veryant&#39;s c-treeRTG?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=7</link>
										<description><![CDATA[ Question:   What are the basic differences between JISAM and c-treeRTG? What are the guidelines for choosing between them?  Answer:  Here are the benefits of each:  Veryant JISAM  isCOBOL Evolve supplies a high capacity, client/server, indexed ISAM...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=93</guid>
										<title>How do I specify which file status codes I want to use?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=93</link>
										<description><![CDATA[You can choose which file status codes you want to use by setting the iscobol.file.status runtime framework property    iscobol.file.status     This property specifies which file status codes to use. Set it to one of the following values:    com...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=34</guid>
										<title>Is there currently a way to debug COBOL and Java source together?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=34</link>
										<description><![CDATA[  Question:  I&#39;d like to be able to step debug through COBOL source into a call to Java and have a Java debugger pop-up or attach and allow me to step through the Java source.  How can I currently do that?  Also, is there a way to step from a...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=13</guid>
										<title>How do I prevent hackers from decompiling Java class files to reverse engineer my COBOL application?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=13</link>
										<description><![CDATA[Question:     How can I secure the code generated by isCOBOL so that it cannot be decompiled? Do you provide a Java code obfuscator? If not, then which one do you recommend and how do I use it with the isCOBOL compiler?     Answer:     The Java...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=31</guid>
										<title>How do I specify properties or a properties file on the command line?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=31</link>
										<description><![CDATA[ Question:   With other COBOLs I can specify a configuration file on the command line and runtime configuration variables in the environment.  How do I accomplish this with isCOBOL?   Answer:  You can specify a properties file on the command line as...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=2</guid>
										<title>What is the best way to control Microsoft Word?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=2</link>
										<description><![CDATA[Question:&nbsp;          Suppose my program controls Microsoft Word to do a Mail Merge. How do I do this with isCOBOL?              Answer:&nbsp;            To control Microsoft Word or to perform OLE automation, isCOBOL requires a third-party...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=324</guid>
										<title>How can you wait for several threads to finish?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=324</link>
										<description><![CDATA[ When doing multithread programming, it is a best practice that a program should not finish its processing until all of its threads are finished as well.  In this article we provide a sample logic of how to check that all the threads started by a...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=187</guid>
										<title>Sending SMTP mail</title>
										<link>https://support.veryant.com/phpkb/article.php?id=187</link>
										<description><![CDATA[ There is an example that uses SMTP email in our sample programs, %ISCOBOL%sampleis-javaiscobol-uses-java-objectothersmailSENDMAIL.cbl   This sample uses the  JavaMail API  to send SMTP emails from a COBOL program, first connecting to the SMTP,...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=321</guid>
										<title>Can I define one or more data items based on the definition of another one?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=321</link>
										<description><![CDATA[ It is possible to define a single or group data item based on the definition of one defined previously. Use this to make sure that data items with a similar purpose have the same structure.    The SAME AS clause is what makes this possible.  ...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=290</guid>
										<title>GIT  Server (Linux) - Install and Configuration</title>
										<link>https://support.veryant.com/phpkb/article.php?id=290</link>
										<description><![CDATA[This document is based on Linux version Centos7 and windows client with isCOBOL release 2017 R2 build#910.8-20170925-24471 and IDE version #135_8.  Section 1. Setup the Server  GIT is packaged with CentOS 7. What most internet docs do not inform you...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=8</guid>
										<title>How do I migrate indexed files to a format that is supported by isCOBOL?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=8</link>
										<description><![CDATA[  Question:       I have indexed files from my legacy application and want to migrate them to either isCOBOL JISAM or c-treeRTG. What are my options for doing this?       Answer:       There are two basic ways to migrate files to an isCOBOL ISAM file...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=282</guid>
										<title>Did you know you can encrypt the communication with the isCOBOL Server?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=282</link>
										<description><![CDATA[isCOBOL Server can be configured to encrypt the data transmitted on the TCP/IP connection.  isCOBOL Server relies on JSSE (JavaTM Secure Socket Extension) for communication. In the Sun/Oracle version you need to also get the JCE (JavaTM Cryptography...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=238</guid>
										<title>Why do I get the error "Could not load the main class" ?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=238</link>
										<description><![CDATA[This error is usually returned by javaw.exe on Windows It means that the class has been found but there were problems while running it, for example if the license is missing. Use java.exe to see a more complex error message that will help in...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=217</guid>
										<title>Why do I get the error message “java.lang.UnsatisfiedLinkError: no ### in java.library.path?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=217</link>
										<description><![CDATA[This error means that the JVM failed to load a native library.  The library name is traced in the error message. A typical case in which this error can appear is when iscobol.file.index property is set to "ctree" or "ctree2" and isCOBOL is not able...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=213</guid>
										<title>Why do I get the error message "java.lang.ArrayIndexOutOfBoundsException" ?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=213</link>
										<description><![CDATA[This error means that a Java array has been referenced out of its bounds. In COBOL programs it usually refers to an OCCURS data item that it referenced outside of its occurrences. i.e. consider having 77 data-item1 PIC X(10) OCCURS 10 and performing...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=209</guid>
										<title>Why do I get the error message "java.lang.NullPointerException" ?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=209</link>
										<description><![CDATA[This error is returned when the JVM tries to use an object that is not available. In COBOL programs it usually refers to a data item. A typical case in which this error appears is when a called program tries to use a linkage item that was not passed...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=205</guid>
										<title>Can I call an RMCobol program passing parameters to it?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=205</link>
										<description><![CDATA[The CALL stmt can call isCOBOL object classes, native Java classes, and C routines (thru DLLâs, Shared object or static routines). But the CALL stmt cannot call any COBOL object from anyother COBOL compiler, which means it cannot call RMCOBOL,...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=193</guid>
										<title>How do I determine what properties are set?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=193</link>
										<description><![CDATA[ To discover what property settings are being used during local execution of a program on Windows, you can set iscobol.tracelevel=1 (or 3, 7, 15, etc) and set iscobol.logfile to the path and name of a file. You will see a trace of places where the...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=151</guid>
										<title>What tools are available for automated functional (regression) testing of a COBOL application?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=151</link>
										<description><![CDATA[ One of Veryant&#39;s ISVs uses TestComplete from SmartBear software (http://www.automatedqa.com/products/testcomplete/)   Veryant has experimented with TestComplete and has verified that it can be used successfully with COBOL applications developed...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=146</guid>
										<title>Why do I get the error java.lang.NoClassDefFoundError: com/iscobol/rts_n/StopRunException?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=146</link>
										<description><![CDATA[ Question:   When I run my program I get the following error:   Exception in thread "main" java.lang.NoClassDefFoundError: com/iscobol/rts_n/StopRunException (wrong name:...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=143</guid>
										<title>Why do I get the error message "Native call not found" and how do I fix the problem?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=143</link>
										<description><![CDATA[ The error message "Native call not found" means that the COBOL program has called a C language (native) function that has the same name as the native library (.dll or .so), but the function does not exist.    For example, the first statement in the...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=142</guid>
										<title>Is isCOBOL backward compatible?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=142</link>
										<description><![CDATA[ The isCOBOL runtime framework is backwards compatible with prior versions of isCOBOL.   This means that the latest version of isCOBOL can run COBOL programs compiled with an older version of isCOBOL.   Although it is not necessary, it is best to...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=123</guid>
										<title>How do I configure file locations with environment variables?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=123</link>
										<description><![CDATA[In order to configure file locations with environment variables you need to add the following line to your isCOBOL properties file:  iscobol.file.env_naming=1  or on the java command line with -Discobol.file.env_naming=1  and then set properties for...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=65</guid>
										<title>How do I compile fixed (ANSI) format source that COPYs terminal format source or vice versa?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=65</link>
										<description><![CDATA[Question:     isCOBOL has compile options for ANSI (-sa), FREE (-sf) or TERMINAL (-st) format. What if I have a source file in one format that copies in a file that is in another format? How do I compile the program?      For example what if I have a...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=81</guid>
										<title>I&#39;ve heard there is a problem passing pointers to C functions. What is it?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=81</link>
										<description><![CDATA[Use the -cp compiler option to enable full POINTER support, including USAGE POINTER, SET ADDRESS, pointer arithmetic and exchanging pointers with external routines.&nbsp;     The remainder of this article applies to programs compiled without the -cp...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=83</guid>
										<title>How do I get more information when I get java.lang.reflect.InvocationTargetException?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=83</link>
										<description><![CDATA[Run your program directly with the java executable, as in "java PROGRAM".    You can also set iscobol.tracelevel=15 and the file named in iscobol.logfile will contain verbose trace information.]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=84</guid>
										<title>What should I use for USAGE HANDLE items instead of NULL?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=84</link>
										<description><![CDATA[Question:     My program uses a lot of USAGE HANDLE items that I set to NULL and check for NULL to mean that the handle has not been created yet.      The compiler gives errors such as the following when I compare a USAGE HANDLE item with NULL in a...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=88</guid>
										<title>How do I select 11x17 paper size using WIN$PRINTER?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=88</link>
										<description><![CDATA[Question:     Setting the paper size to WPRT-11x17 does not work. How can I get 11x17 printouts?        Answer:           In isCOBOL APS, the WIN$PRINTER library routine is implemented using platform independent Java technology that does not support...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=89</guid>
										<title>Can you derive isCOBOL object classes from Java and vice versa?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=89</link>
										<description><![CDATA[Question:     Is it possible to use object-oriented COBOL to subclass a Java class? Can you provide an example of how this looks in COBOL?      Is it possible to go the other way and extend a COBOL object class with Java (e.g. class myJavaSubClass...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=94</guid>
										<title>How do I increase the maximum Java heap size when compiling?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=94</link>
										<description><![CDATA[Question:     When compiling a large program I got the following error:      The system is out of resources.    java.lang.OutOfMemoryError: Java heap space&nbsp;      How do I increase the maximum heap size?        Answer:        Use the Java -Xmx...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=95</guid>
										<title>What compile option should I use for ICOBOL compatibility?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=95</link>
										<description><![CDATA[Question:     I am getting an error 39,02 when I try to read my existing Vision file. I discovered that the record size is different than expected and my record has COMP items. Originally I was compiling with ACUCOBOL&#39;s -Ci option for ICOBOL...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=96</guid>
										<title>Where can I obtain a copy of the ANSI 2002 COBOL standard?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=96</link>
										<description><![CDATA[You can obtain a copy for around $30 from ANSI at http://webstore.ansi.org    Click&nbsp;here&nbsp;or visit&nbsp;http://webstore.ansi.org&nbsp;and enter INCITS/ISO/IEC 1989-2002 as the Document Number.    The title of the document is "INCITS/ISO/IEC...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=97</guid>
										<title>How do I resolve "code too large for try statement" errors?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=97</link>
										<description><![CDATA[Question:     When I compile I get errors such as the following:         C:\2008_gui\OBJECT\MAIN_MENU.java:12810: code too large for try statement       } catch (CallOverflowException ex$0){ throw new WrapperException (ex$0); }         ^ What do I...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=99</guid>
										<title>How do I suppress multiple reserved words with the -rw compiler option?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=99</link>
										<description><![CDATA[You can specify a list of reserved words to suppress by separating them with commas and no spaces. For example    iscc -rw=print,printer PROGRAM.cbl&nbsp;        ]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=44</guid>
										<title>What is the behavior difference of STOP THREAD?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=44</link>
										<description><![CDATA[Question:     I have heard that isCOBOL behaves differently on a STOP THREAD statement since a YIELD is needed. Please elaborate.&nbsp;      What do you mean that a YIELD is needed? What exactly is the difference in behavior? What do I need to change...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=50</guid>
										<title>What are the defaults for the DATE-ENTRY control DISPLAY-FORMAT property and format styles?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=50</link>
										<description><![CDATA[Question:          It seems that the default value for the DATE-ENTRY control DISPLAY-FORMAT property and the formats used by the CENTURY-DATE, LONG-DATE, SHORT-DATE and TIME styles are different from those used by ACUCOBOL-GT. What are the formats?...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=56</guid>
										<title>How can I make my isCOBOL program to be called instead of a C routine when both have the same name?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=56</link>
										<description><![CDATA[By default the isCOBOL CALL behavior is to look for the called routine within the C routines before looking for it within the COBOL routines. When a C routine has the same name as a COBOL routine, the COBOL routine will never be called.&nbsp;     A...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=58</guid>
										<title>How do I turn on debug trace to produce a log file?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=58</link>
										<description><![CDATA[Question:     Is there a runtime trace log feature? How do I turn it on? What configuration options are available?   If I have multiple processes running, is there any way to distinguish which log file output goes to, or does all output go to the...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=60</guid>
										<title>Does SET ADDRESS OF X TO Y work?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=60</link>
										<description><![CDATA[Question:          I have some code that uses M$ALLOC and then assigns the address of an array (in the linkage area) to the space just allocated. Code fragment below. There is a note in the migration section that âSET X TO ADDRESS OF Yâ requires...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=6</guid>
										<title>Is your runtime library backward compatible?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=6</link>
										<description><![CDATA[ Question:      Do I need to recompile in order to run with each new version of iscobol.jar or other runtime libraries that you release?&nbsp; I compiled with one build and then upgraded to a later build. When I attempted to run my program I received...]]></description>

									</item>
<item>
										<guid>https://support.veryant.com/phpkb/article.php?id=15</guid>
										<title>How would I create my own CBL_ALLOC_MEM and CBL_FREE_MEM routines?</title>
										<link>https://support.veryant.com/phpkb/article.php?id=15</link>
										<description><![CDATA[ Here are some examples:            IDENTIFICATION DIVISION.        PROGRAM-ID. CBL_ALLOC_MEM.        ENVIRONMENT DIVISION.        DATA DIVISION.        LINKAGE SECTION.        01 LNK-MEM-POINTER      POINTER.        01 LNK-MEM-SIZE         UNSIGNED...]]></description>

									</item>

</channel>

</rss>