Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Question: What should the umask be set to when installing RM/COBOL on UNIX/Linux? Answer: First, you should always install Liant products as root.Set the root umask to 022 if not already set that value. This will provide read/execute permissions to the files for group and other users within the RM/Installation paths.
Question: Where are the runtime and debug configuration files stored or remote projects on Eclipse. Answer: The workspace stores the configuration files in <workspace>/.metadata/.plugins/.org.eclipse.debug.core/.launches. This file can be opened via any text editor.
Is there a possibility sending emails via cobol without the MAPI ?
I have found that national characters like ÄÖüß and so on do not show correctly in a UTF-8 coded managed application when read from an ASCII file created by a native app. Based on an answer I read here on encoding I came up with this code: method-id UTF_conversion. procedure division. *> Specify the code page to correctly interpret byte values set wsEncoding to type Encoding::GetEncoding(1252) *> Windows set codePageValues to Auftragrec *> sequential file to be displayed set n3 to codePageValues::Length *> set Original length of ASCII set tAUFTRAGrec to Auftragrec *> save record to temporary record *> Same content is now encoded as UTF-8 set unicodeValues to wsencoding::GetString(codePageValues) set cAUFTRAGrec to unicodevalues *> for Display *> Same content "äöüß" is stored as UTF-8 initialize Auftragrec set A-Empfaenger to cA-Empfaenger *> set item containing national characters displayed in list b
Environment is 64-bit AIX, Visual COBOL 2.1 but compiling on the command line.I have a simple COBOL program calling a simple C program. The COBOL program is compiled as 64-bit. The C program is, as far as I am aware, compiled as 64-bit - I have used the compilation option -maix64 and the loader option -b64. Running the program generates the error "253 Cannot load file - unsupported format". I have also tried compiling the COBOL program as 32-bit but with the same result. A previous question in the forum about this same result was apparently due to a 64-bit COBOL program calling a 32-bit C program, but I think I've eliminated that.To eliminate anything else, I edited the two programs down to absolute basics (the return 19 in the C program is so I can check that a value is definitely being returned): program-id. testc.&
Problem: Is Apache 2.2.? Supported with Xcentricity BIS v12? Resolution: All versions of Apache 2.0.x and Apache 2.2.x are supported, and compatible, with Xcentrisity BIS v12. For additional information on this subject, please see section "1.3 Installation on UNIX" of the attached Xcentrisity BIS User's Guide: bisuge02v12.pdf **The Xcentrisity BIS documentation can also be located on our web site at: http://supportline.microfocus.com/productdoc.aspx
Hi! I will Install Net Express 4.0 Application Server on a Windows 2003 Server with a 64 Bit System.... Anywhere i have read that i can install the application Server from Net Express 4.0 on a 64 Bit Windows.. Have anyone a idea how i can install the application Server (net express 4.0) on a 64 Bit machine? #ApplicationServer54Bitmachine
Hi! I becom until a few hours an Error if i will starting Net Express... The Error means that the License Manager is not running... But I have not install the License Manager from Net Express... The own License Manager that is running is the License Manager from Visual Cobol... Have anyone an idea? #NE5.1Error
I am trying to figure out why I get the error message "extend 32-bit Runtime has stopped working". We use the 9.12 runtime. I ran a trace file and the last entries before the error occurs is as follows : --------------------------------------------------------------------------------------------------- PS1: write (thread 673)PS1: write (thread 673)PS1: write (thread 673)PS1: write (thread 673)VPINT003.PAY: next (thread 673)>>>key 0 = ' 1205301 'VPINT003.PAY: close (thread 673)translating ("VPINT003.PAY", INDEX, 0) -> "VPINT003.vix"closing index segment (#0): VPINT003.vix>>Header accesses: 502 updates, 503 locked reads, 0 unlocked reads>>0 unlocked reads waited for update, 0 unlocked reads retriedclosing data segment (#0): VPINT003.PAYPS1: write (thread 673)PS1: write (thread 673)PS1: close (thread 673)>>>trying alias = PS1Set parameter 'DLL_CONVENTION' to 1 -------------------------------------------------------------------------------------------------
Hello all, ¿Anyone knows if an OLAP Cube database system can be implemented with vision files? Thanks#database#Vision#olap
I am getting an error on a 64 bit Win 7 machine 'application failed to start because its side by side configuration is incorrect' can anyone tell me what causes this and how to fix it/?
We updated to Acu 9.2.2 on Windows Server 2012 to address the reported issue with C$SYSTEM for Windows 8 assuming our issue with Server 2012 was related to the same. The purpose of the call is to display a pdf file with the default pdf viewer as follows: move spaces to ws-file-name string "C:\\Image\\a.pdf" into ws-file-name end-string inspect ws-file-name replacing trailing " " by low-value. &nbs
We installed COBOL Server 2012 Runtime on our server... it's actually a Windows 7 workstation that we use for file sharing. I am using a batch file to run native INT programs from another Windows 7 workstation in the office: SET COBSW=/S15000 P3-F B Cset COBDIR=\\\\10.172.150.50\\COBOLsrvset PATH=%COBDIR%;%COBDIR%\\bin;%PATH%mfcesdchk.exe >nulif errorlevel 1 goto startlicgoto startapp:startlicstart /B mfcesd.exe -b:checkloopmfcesdchk.exe >nulif errorlevel 1 goto checkloop:startapp cmd run mainmenu.int The mfcesdchk command from the workstation completes successfully and returns: CES daemon running, version 10000.2.01443 The Windows 7 "server" is running FortiClient Firewall. We have opened port 5093 and we have set lservnt.exe to "allow" for both the private zone and public zone, but we get an error when trying to run our INT: error code: 247, pc=0, call=1, seg=0247 Licensing error (Error[5]: Cannot talk to the license server on host &q
Hello ! I'm using: - Visual Cobol 2.2 - Visual Studio 2010 - 32 bits - Oracle Client 11.2.0 The Cobol program is compiled ok. On Project Properties, SQL, the preprocessor being used is OpenESQL and the directive SQL(DBMAN=ODBC) is set. The driver Microsoft ODBC for Oracle is installed. I added the connection Oracle Database (Oracle ODP.NET) and tested the connection. It's ok. I can see the database, the tables, and access them. But when I try to run the program I got a -19703 in this command: EXEC SQL CONNECT :WS-USERNAME IDENTIFIED BY :WS-PASSWD END-EXEC. What am I doing wrong ? Thanks in advance and sorry for any English mistakes.
There are and what are the roles for write acucobol from the OLE CLASS, excel word etc.
Hi, I'm using Net Express 5.0 on windows XP. whenever I make some changes in the code then I have to manually format or change the alignment of the code.someone pls tell me is there any option for formatting the COBOL code in net express thanks in advance#formattingcode
Problem How to attach to a remote unix process and debug, using Visual COBOL for eclipse based on a PC. Requirements VISUAL COBOL for eclipse installed on PC. <See Installing Visual COBOL on Windows> Visual COBOL development hub installed on the Unix machine. <See Installing Micro Focus Visual COBOL Development Hub> RDO daemon process must be running. <See Configuring the Remote System Explorer Support> Resolution High level diagram & summary Two remote projects are created in the same workspace using Visual COBOL for eclipse on a PC quickdebug is the actual development project. APquickdebug is the glue for attaching to the deployed running process to debug and test. APquickdebug references the quickdebug project APquickdebug has a debug configuration, which has quickdebug referenced for source code and the debug symbols. tesbin is a soft symbolic link created on the unix machine in the APquickdebug unix p
I had try to pointer a existent pivot tale using inquire statment same for a range but pivottables class not have get method. Someone Know how you use a pivot tale with acucobol program. Thank you
1: I set the MapiMsgflFlags to mapi-dialog, but the dialog from outlook does not open. Can someone tell me why? 2: is it possible to set a sending time of the email in the MapiSendMail function?
Hi, I installed MF Visual Cobol for Eclipse 2.2 on Linux (centOS). License is activated and the command line compiler works fine. After it I started eclipse, and I created a small project without any error. Debugger works also. Then I tried to import a big project (version 2.1). It's imported without any error, but the compilation stopped. I closed eclipse and restarted it. It does not work any more, it shows only the splash screen. After it I renamed the workspace and eclipse new restarted. It starts but I get a java error: "An internal error occurred during: "Initializing Java Tooling".com/microfocus/eclipse/project/content/FileTypeHelper" After click on OK it goes, but I can not create a Cobol Project. Any hints or helps? Thx - Laszlo
I have a challenge to solve the following.... The first read of an XML-file in my COBOL program takes 40 minutes.The size of the file is 55 Mb. In my opinion, 40 minutes is too long for the first read. How can I fix this time-problem ? SELECT XXX2CAK ASSIGN TO WS-XXX2CAK-NAAM ORGANIZATION IS XML DOCUMENT-TYPE IS "Borderel.xsd" FILE STATUS IS WS-XXX2CAK-STATUS. ---------------------------------------------------------------------- XD XXX2CAK. 01 CAK999-Borderel identified by "Borderel" count in CAK999-Borderel-cnt. 02 CAK999-Bericht identified by "Bericht" count in CAK999-Bericht-cnt. 03 CAK999-CodeBericht PIC 9(03) identified by "CodeBericht" count in CAK999-CodeBericht-cnt.
Problem How can a new data catalogue and the files that are referenced in the catalogue be added to a Unix Relativity Data Server? Resolution The relativity data server is driven by the odbc.ini file that resides in the Relativity Data Server installation directory. The normal installation directory for the Relativity Data Server that uses the RM file handler is: /usr/RelRM12.08/RelRM12.08 For the Relativity Data Server that uses the Micro Focus (MF) file Handler it is: /usr/RelMF12.08/RelMF12.08 The odbc.ini file is split into four main areas. SimbaServer This is headed [SimbaServer] and contains the Relativity configuration information. Once this is setup, it is unlikely that it will be changed. Simba Trace This is headed [Simba Trace] and is used to setup the tracing options that are required to diagnose faults. It is unlikely that this will need to be changed. ODBC Data Sources This is headed [ODBC Data Sources] and is where the link between the data source names and r
Problem As application servers periodically need to be rebuilt, it is required that the RM product needs to be re-installed on a clean server using the existing license. Why does the license not automatically activate itself during the installation process? Resolution The original licenses which may have been issued over six months ago can still be used, but need to be activated. Most licenses are setup to be automatically updated. This will occur once a connection has been established to the Micro Focus (MF) license server. The license will be updated so it becomes current. There are normally four reasons why this cannot happen. The machine that the install is being performed on, is not connected to the internet. This means that a connection cannot be made to the MF License server, so it cannot be automatically updated. RM will use port 80, the normal Web server port to connect to the MF license server. If this port is blocked by a firewall, then the automatic license updat
What was the first version of acucobol that used the routine C$LIST-DIRECTORY? Has the argument LISTDIR-FILE-INFORMATION (defined in "acucobol.def") always existed for this routine? If so, has the definition for LISTDIR-FILE-INFORMATION (defined in "acucobol.def") remained consistent thru newer versions of acucobol? or ever been changed in newer versions? I am finding that one site is getting the following error: Invalid or missing parameter to "C$LIST-DIRECTORY"
Problem : system function and Iexplore command with parameters The customer would like to use system function to run iexplore command with a parameter begins and finishes with double quote . Example : iexplore “http://www.microfocus.com “ Resolution: The single quote must be used to delimited the string . Example MOVE ‘iexplore “http://www.microfocus.com “’ TO DATA-ITEM1 Or STRING ‘iexplore’ DELIMITED BY SIZE ‘ “http://www.microfocus.com “’ DELIMITED BY SIZE INTO DATA-ITEM2 #commandline#netexpress
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.