Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Problem: Customer is encountering a problem in publishing a method in Web Services. He's following the tutorial - compiles the Hello Word program, asteriscs it etc. When he comes to creating the client part adding the Web Service part he says that the Hello World method is not published and he cannot see it. Resolution: This problem may actually occur with any service that is selected from the Add Web Reference wizard. This simply means that the file name extension (.asmx) was not mapped to any program or interpreter that processes that type file. Here are the steps to map that file name extenstion to the program or interpreter: 1. Find out if there are different versions of the MS .NET Framework installed on the machine 2. Determine which one (if there are more than one version) is the latest version by looking at the directory name (e.g. C:\\[Windows directory]\\Microsoft.NET\\Framework\\v1.1.4322 is more recent than C:\\[Win
Problem: Create an EXE program in NX and then under Project>Build Settings, select the Link tab and select 'static' and 'character'. The following program runs just fine with the following file supplied as a variable length sequential file and produces the output below: Resolution: $set rdw nobound Identification Division. Program-Id. LORINCE. Environment Division. Input-Output Section. File-Control. Select In1 Assign to 'Vli.Dat' Status is InFs. Select Out1 Assign to 'Vlo.Dat' Status is OutFs. &nbs
Problem: Description: OLESUP method "adviseEvents" gets error 243 - class could not be loaded The class olesup cannot load the event handling class because the case of the event handling class name does not match the case of the class name in the program using olesup. When using the olesup "adviseEvents" method to register an event handler, keep in mind that the class names default to lower case. In this case, you should specify the class name literal in CLASS-CONTROL as lower case in the program where you invoke the "adviseEVents" method of the olesup class: CLASS-CONTROL. MYEVENTCLASS IS CLASS "eventhandlerclass". If you specify the class name in upper case ("EVENTHANDLERCLASS"), then make sure that you add an entry in CLASS-CONTROL in the event handling class such as: CLASS-ID. EVENTHANDLERCLASS, INHERITS FROM OLEBASE-E. CLASS-CONTROL.
Problem: "Internal Error. Module c:\\Program Files\\Rational\\ClearCase\\bin\\cccmndlg.dll is using command ranges improperly. Please contact technical support." Resolution: Known problem with Clearcase, was reported to them in Jan'01 workaround is to create a shortcut with drive\\path\\mfnetx /RSRCCHKOFF or lauch Net Express from Net Express command prompt by typing mfnetx /RSRCCHKOFF This turns off resource checking. Old KB# 6925
Problem: In some cases it is necessary to run cblcored -i to modify the desktop security to be able to start animator with CBL_DEBUGBREAK. But the desktop security is restored each time the PC is restarted. Resolution: The easiest thing to do it would be to create a new shortcut in the Startup folder of that user that would have Net ExpressPath\\Base\\bin\\cblcored.exe -i To create a new shortcut in the startup folder: Start / Settings / Task Bar & Star Menu / Advanced tab / Click on Add - Browse for cblcored.exe in the Net Express base\\bin subdirectory. add the -i option after the name of the file. Click on Next. - Find the Startup folder to place the shortcut in. Click on Next. - Give any name you wish to the shortcut. Click on Next. Old KB# 6912
Created On: 21 March 2011 Problem: When deploying a web service you get the following error in a dialog box:<html><head><title>Error - File Not Available</title><meta name="robots" content="noindex"></meta><body><h2>HTTP Error 404 - File Not Available</h2><p>The requested file is not available</p></body></html> Resolution: A 404 error at the beginning of the deployment operation almost certainly means that MFCS was unable to locate either the mfdeploy.exe program or one of its path components, or one of the path components in the PATH_INFO portion of the URL.Once the CAR file has been built and the server's deployment listener has been contacted, the deployment client (here the IMTK) does an HTTP POST operation to send the CAR file to the deployment receiver program, mfdeploy.exe. It uses a URL that specifies the virtual path to mfdeploy.exe and the virtual path to the dep
Problem: 173 ON MFEXTMAP.DLE Resolution: Release: 3.0 Advised: remove ".dle" extension from call; use the assign"external" compiler directive; set Mfextmap environment variable in Project Properties, IDE. Old KB# 6814
Problem: The Source Control menu does not show Resolution: Release: 3.1 If PVCS is already installed and the PVCS portion for Net Express and the Source Control menu from Net Express, uninstall the PVCS portion and reinstall it. Old KB# 6817
Problem: Unable to apply filehandler FixPack Resolution: Release: 3.1 Create c:\\temp and have environment variables tmp and temp point to this folder. Old KB# 6836
Problem: Dialog System - unable to refresh text displayed on push button Resolution: Release: 3.1 Move the data to be displayed to a field in the data block and use SET-OBJECT-LABEL PB1 'data-block-field' Attachments: 8012-00-RF-DATE-VAL.cpy Old KB# 6852
Problem: Compile of function UPPERCASE, causes message 13-s user name required Resolution: Example: Move function upper-case (dataname-1) to dataname-2. Attachments: LSWPOL.cpy Old KB# 6816
Problem: How to initialize COM properties when COBOL COM is instantiated. Resolution: Release: 3.1 - How to initialize COM properties when COBOL COM is instantiated. You can't do this automatically. However, what you could do is create an initailize instance method and have the client call that, or have the instance variables as OLE properties and have the client set them. Old KB# 6805
Problem: Release: 3.1 You must pass a pointer to the data item to COBOL and establish addressibility within the linkage section. Resolution: Linkage section. 01 some-string pic x(256). procedure division. call "some_func" using by value int-param returning address of some-string end-call Then in your C program return a pointer to the array Attachments: DB2_description.JPG Old KB# 6858
Problem: Release: 3.0 This rule is defined in the Net Express Help under Class-Control paragraph in the Language reference manual: Resolution: ------------------- This example shows a Class-Control paragraph which registers classes CharacterArray and myClass. The Class-Control paragraph is part of the new Object Section, which goes at the end of the Environment Division. class-control. CharacterArray is class "chararry" myClass is class "myclass" . The filename is in quotes at the end. You must enter the filename in lower-case this is for future compatibility with operating systems with filename case-sensitivity. Attachments: RMW_Case00010573.doc Old KB# 6834
Problem: Problem running old Workbench code with new Net Express code Resolution: Release: 3.1 I'm sorry but you cannot mix the Workbench product applications with applications created with Net Express. They have incompatible and conflicting run-time systems. If you wish to run your application in Net Express then you need to recompile the entire system using Net Express. Some of the run-time files between the two products, such as UTILS.LBR have the same name and so they cannot just be copied over. Old KB# 6804
Problem: File error when using UNC path names Resolution: Release: 3.1 need to specify \\\\server\\path in the program, not just the directory path Old KB# 6827
Problem: Get 173 error when calling 16-bit DLLs from a 32-bit EXE Resolution: Release: 3.1 Get RTS error: 173 Called program file not found in drive/directory It is not possible to call 16-bit COBOL DLLs from a 32-bit EXE. You will need to recompile all in 16-bit or all in 32-bit. Old KB# 6871
Problem: File status 9/173 on read of index file with data compression. Resolution: Release: 3.1 If you are using the DATACOMPRESS"1" compiler directive, you should link cbldc001.obj in with your application. The Net Express help topics "Linking the Run-time Support Modules" and "Run-time Support Modules" mention some of the modules that may be required. Attachments: Second Load.zip Old KB# 6823#ServerExpress#COBOL#netexpress#RMCOBOL#AcuCobol
Problem: How do you resolve 805 error? Resolution: 805 specifieds package not found. The program you are trying to execute was not bound to the database. Either make sure when compile program that using db2(access) or have your compile produce a bnd file and bind manually to the database. Attachments: ORA-04031 Error.doc Old KB# 6850
Problem: Any reason why size of LIB is smaller under Net Express 3.1 than Net Express 3.0? Resolution: Release: 3.1 The reason for the difference in LIB file sizes is that Net Express v3.0 uses Microsoft's v5.0 for linking, while Net Express v3.1 uses Microsoft's v6.0. The linkers created the different output sizes. Attachments: Legacy.piz Old KB# 6866
Problem: Incorrrect results from elementary numeric move operation. Resolution: Release: 3.1 Use comp with no trunc instead of comp-5 Attachments: (Trunc Program-ID) 20080129.rar Old KB# 6811
Problem: Release: 3.1 Inserted 3999.999999 from sqlplus into number(15,6) came out 4000, in program came out 3999.999999 which is correct results. Resolution: SQLPLUS has setting numwidth whose default is 10 , it will round to display 10 digits. This is why sqlplus showed different results than program. If set numwidth to 15, then sqlplus shows same results as program, which is the value stored in the database. Old KB# 6870
Problem: Status of the support of Btrieve files by Net Express Data File Editor. Resolution: Although the File Hanlder still support Btrieve files the Data File Editor and the Data File Convert no longer supports Btrieve files. This information is for Net Express v3.1 and above. Old KB# 6846
Problem: Echo to STDERR Resolution: The STDERR Compiler directive only applies to the compiler's behavior and should only be used if you are compiling from a command line. It is not going to be effective in the IDE. Attachments: banner_strat_66aa44.gif Old KB# 6828
Problem: 28-S Compiler Error Resolution: Release: 3.1: Customer was passing a pic x(9) item by value. Changed this to by reference and error went away. Attachments: StateFarm_Test Inventory report_D20081123.zip Old KB# 6835
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.