Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Problem: RM/COBOL can load a configuration file, automatically, when it is executed. This functionality is, also, available in the Xcentrisity BIS product. Resolution: Xcentrisity Business Information Server allows you to automatically load a configuration file when a service program is executed. The configuration file has to be located in the BIS execution directory and has to have a specific name. To become effective, however, you must restart the BIS Service Engine. Since the commands used to start, stop, and restart BIS differ from OS to OS, please refer to the BIS Users Guide for detailed instructions on how to do this for your platform.UNIX Apache BIS:Default execution directory : /usr/local/liant/bis/bin/Automatic configuration file name: "xbisengd.cfg"Windows IIS BIS:Default execution directory (for version 12): Program_Files_Dir\\Liant\\BISv12 Automatic configuration file name: "xbisse.cfg"*An automatic configuration file, when found, is proc
We are receiving an error from XML Extensions for RM/COBOL that is not in the list of possible errors: Status: 0070Error: 70[0] - in function: AddText Regards
Hello, I got this: ENVIRONMENT DIVISION. INPUT-OUTPUT SECTION. FILE-CONTROL. SELECT F1 ASSIGN TO "test.dat". I get this error at the last line: "Invalid ASSIGN name" which is "test.dat". I've also tried the whole file path but it still doesn't work. The file is in the same directory as the program file. Anything on this? - Thomas #File#Assign#COBOLFILE
I am doing research in order to use Acu4GL to possibly convert from Vision index files to SQL. I would appreciate advice from someone with this experience. Have just started research so any knowledge or suggest places to research would be helpful. Thank you.
Hi, I am using Net express 6.0 for Dubugging COBOL Oracle program. When I step through the program in Debug mode, it gives error, "173 Called Program file not found in Drive/Directory SQLADR" . Any one please help he in solving this issue. Thanks and Regards N Raajan #Sqladrnetexpress
tried installing with vce_22.exe and it asks me to install 32-bit oracle java 1.6, what is this? i thought the installer installed everything i needed?
A question about file hander between command line and jvm cobol. environments description os:windows7 dev IDE: Micro Focus Enterprise Developer 2.2 Update 2 for Eclipse projects:there are 2 projects 1,pure java project (1 source only) 2,jvm cobol project(1 source only) now,execute the program by the below order command line → jar(pure java project) → jar(jvm mfcobol project) but below error was happed. -----------------------------------------------the below-is--full test source--------------------------------------------------------------------- ttt.bat file: --start------------------------------- set JDK_PATH = "C:\\Program Files\\Java\\jre7\\bin"set CLSPATH = %CLSPATH%;"C:\\bat\\xxx\\mfcobol.jar;C:\\bat\\xxx\\mfcobolrts.jar;C:\\bat\\xxx\\mfsqljvm.jar;set CLSPATH = %CLSPATH%;"C:\\bat\\xxx\\test1.jar;C:\\bat\\xxx\\test2.jar;C:\\bat\\xxx\\cblrtsm.dll"%JDK_PATH%\\java -Xms128m -Xmx512m -cp %CLSPA
I am trying to go thru the tutorials and hit "No license code for SolarVisualStudio 2010". Can anyone tell me how to solve this problem? Thanks
Java program: import java.sql.*; public class javamain { /** * @param args * @throws SQLException */ public static void main(String[] args) throws SQLException { // Create a variable for the connection string. String connectionUrl = "jdbc:sqlserver://localhost:1433;" "databaseName=Northwind;user=chris;password=mypassword"; // Declare the JDBC objects. Connection con = null; Statement stmt = null; ResultSet rs = null; try { // Establish the connection. Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); con = DriverManager.getConnection(connectionUrl); // Create and execute an SQL statement that returns some data. String SQL = "SELECT TOP 10 * FROM Customers"; stmt = con.createStatement(); rs = stmt.executeQuery(SQL); // Iterate through the data in the result set and display it. while (rs.next()) {
Hello All, Intel chip is little endianess (LE) wheres IBM and Solaris is big-endianess(BE) and this is causing me lot of trouble when I am trying to run my application on Linux platform (running on Intel chip set). Traditionally our application run on Sun Solaris based server, code gets compiled with Server Express ver 5.1 and executed in Dell Clerity Unikix TPE/BPE environment. Now I want to run my same 32 bit COBOL-CICS application on Linux. My application is using COBOL pointers, Oracle database, MQ, C programs, assembler routines and I suspect that this LE and BE switch causes some problems. This could be either in different compiler settings required for LE (as compare to BE), usage of comp/comp-4 vs comp-5. Errors I am getting are like 'Memory out of bound, program is trying to access memory not assigned to him', error pointing to insufficient access to Oracle database, while executing CICS commands error is "203  
I'm passing this ISAM file record from native to managed, using com-interop: 03 RHS-REF-TRANS-HIST. 05 RHS-REF-TRANS-HIST-KEY. 10 RHS-TYPE-REC-ID PIC X. 88 RHS-TYPE-REC VALUE "R". 10 RHS-ENTY-CODE PIC XX. 10 RHS-FSCL-YR PIC XX. 10 RHS-REF-INFO.  
Problem When attempting to Install Visual COBOL Development Hub, Visual COBOL for Eclipse, Enterprise Developer, or Enterprise Server for Unix or Linux, the following message is received. Problem backing up /VisualCOBOL to /VisualCOBOL.BKP.. ("VisualCOBOL" being the intended installation location of the Visual COBOL product.) Unable to continue with update of product. Resolution It is possible that you are attempting to install in the root directory of a mount point. The installer attempts to backup the existing directory to a name.BKP directory at the same level, if the installation directory value chosen is an existing directory. For example, if the installation chosed, is /opt/microfocus/cobol, the installer will attempt to back up the directory as /opt/microfocus/cobol.BKP. However, this is not feasible in Unix or Linux if the installation directory is the root directory of a mount point. You will need to specify a directo
Is it normal to have multiple acuserve.exe tasks opened, when I look into Task Manager? http://oi58.tinypic.com/2db5w28.jpg #AcuCobol#AcuServer#acuserve
Can you download both eclipse and visual web developer to the same machine and use either one for coding cobol programs?
Right now we have Adobe X.10 and the print command works wonderful for printing a PDF through the network to network printers. Once we upgrade to Adobe XI that no longer works. I knew it would come someday. Has anyone gotten a free method to work. I have checked the internet and found one possible fix. Wondered if Visual Cobol users, found another solution.#Abobeandprinting
I'm using the ACUXDBC driver to update a single field in an UPDATE statement. My statement is thus: UPDATE Orders SET RECORD_DATE = '2015-02-27' WHERE TRANSACTION_NUMBER = 906944200 When I run the above statement I get the following error. ERROR [HY000] [TOD][ODBC][GENESIS]VISION: Cannot update 'Orders',Record not found The only problem is the record *does* exist because when I do a SELECT as in: SELECT RECORD_DATE FROM Orders WHERE TRANSACTION_NUMBER = 906944200 It finds and returns the correct value for the row in question. So I know the record exists, and I know it can be found, but for some reason the XDBC driver is telling me that it cannot be when I try to do an UPDATE. I have tried updating a different field in the same row and it works fine. This statement runs without any problems. UPDATE Orders SET mkting_unit = 1 WHERE TRANSACTION_NUMBER = 906944200 Any thoughts? Appreciate it!#AcuXDBC#update
Dear Chris, I am using MF Server Expres 5.x and my program is calling an Stored Procedure. When y put EXEC SQL CALL TESTGENERICO (:L991C-MENSAJE) END-EXEC. The program Run... When I Put MOVE "TESTGENERICO" TO PROCNAME. EXEC SQL CALL "PROCNAME" (:L991C-MENSAJE) END-EXEC. The program DONTS RUN...... Any Tips abiut This ??? PJM
Hello, i have Version of Server for COBOL 64-bit Edition I have licenses for AIX 6.1I bought 10 licenses.I always used 9 licenses. Installed Sys --------- --- ------ In Use/ opt / microfocus / Cobol 10 0 9 64-bit Server Express (Model 2)I will wish to free them but I can not.What command do?I tried the command# / opt / microfocus / sx51WP6 / lmf / k lmfgetpvThis changes nothing.Could you help me to release these licenses?thank you,#cobolnetexpress
tried using the download link in the email and it comes up with a "Server Error in '/' Application." error Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> Notes: The current err
I'm trying to read and right from flat files in codebehind in a web app project. It works the first time through. Subsequent executions create the error message below until the default app pool is recycled in IIS. I've heard from other users that maybe flat files can't be used in codebehind. Is this true? Do I need to call a separate COBOL program to use a flat file? I would like to avoid making a call every time I want to access a file, because each call requires several lines of code to use a rununit to handle multiple users accessing the webpage simultaneously. Here's the code causing the issue: class-id WebStressTest.LOGON is partial inherits type System.Web.UI.Page public. ENVIRONMENT DIVISION. CO
There is a way to show the value a field pic 9(09)V99 in a MaskedTextBox? In my test the value is distorted. I would like to SHOW the following result in MaskedTextBox. R$ 1.500.25 Visual Cobol 2.2 .NET Thanks,
Hello (again). I have a program that reads records in a .txt file. Depending on the content of that fileit will determine what program is to be CALLed next. The records are read into a structure in WORKING-STORAGE SECTION. The content of the txt file is written manually. http://puu.sh/hhyKO/3210509123.png If someone is very interested: http://pastebin.com/bjWsUUtN The CALLed program displays "hello"... The main issue is that TBN01002Tbe called. I have displayed f1-prg and it displayes TBN01002T, so I don't see howTBN01002T could be a problem. Any help would be very appreciated! - Thomas #COBOL#call#EVALUATE
Why, when I set a variable to a new instance of List[string], do I get an IList[string]? They aren't interchangeable and by giving me an IList[string] I have no access to any properties or methods not part of the IList interface such as AddRange which is a method of the List class but not part of the IList interface. This seems to be a bug in your .NET implementation. What do I need to do to get a fully functional List[string] object? Thanks.#IListList
OK, I have put together a scenario where I have a Native Console COBOL program code calling (invoking) a Managed Win-Forms COBOL program code (class/method). This was based on the CCW tutorial plus lots of additional assistance with things like Interfaces (thanks all!). I have attached what I have so far in 2 zip files (2 different solutions - one for the caller and one for the called). My question is: How would I also "call / invoke" this very same code from another Managed program code (class/method) - (another Managed solution) ???
I am going to be downloading a copy of Visual Cobol on my labtop and am wondering do I need to install a Visual Studio copy to edit and work with the programs?
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.