Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
I'm hoping someone can help me. In our software we are able to generate and send out emails. The current procedure we use is by calling a third party software that uses MAPI. Some of our customers are having issues running this, so I was wondering if there is a way in RM/COBOL to use SMPT?
Hi, i intend to migrate small native cobol app. to VC. Function of the app is to connect to oracle and use interface (data connection., per table) in order 1. Connect to oracle 2) Send request using to CRUD records. It works like this:A) connect to oracle(connect.cbl)B) data request (execute with oracomm.cbl) using data adapter(subprog,e.g table.cbl) Ill give you few excerpts from (native cobol) programs as a hint: 1) Data Adapter (e.g. table.cbl) ... WORKING-STORAGE SECTION. *-----------------------------------------------------------------EXEC SQL INCLUDE SQLCA END-EXEC. EXEC SQLBEGIN DECLARE SECTIONEND-EXEC. 01 .05 KEY-SIZE PIC 9(5) VALUE 12.05 TAB-SIZE PIC 9(5) VALUE 190. ... 05 W-RQ. 10 W-RQ-CMD PIC X(5).88 CURSORJAV VALUE "LOCNX","REDNX","RDUNX","REDNK","RDUNK".88 CURSORJAR VALUE "LOCBR","REDBR". .... LINKAGE SECTION. *----------------------------------------------------------------- 01 P-ID. 05 P-ID-PGM PIC X(8). * 01 P-RQ. 05 P-RQ-CMD PIC X(5). 05 P-RQ-FN PIC X(3). 05 P-RQ-KN
In regards to the Personal Edition of Visual COBOL - what features are supported for CGI programs? I have found the EXTERNAL-FORM and EXEC-HTML facilities. EXEC HTML errors out for me. Using the command line so I can more easily copy the results into this note, here is an example: This source code: EXEC HTML <HR>MESSAGE VALUE = [:O-MESSAGE]<br> END-EXEC Causes this error: paul@LNX1:~/web/cobsrc> cob -xo ../bin/CGI001 CGI001.cblCGI001.o: In function `CGI001':CGI001.cbl:(.text 0x41d): undefined reference to `HTML' The External Forms stuff works pretty well, but it feels a little old. Sending the entire form back each time a request happens isn't all that efficient either. Has anyone gotten this to work with say, XML or modern Ajax based screens? If so, do you have an example you would be willing to share? I normally send XML from Ajax screens and expect an XML reply. Yours, -Paul
Ok, I do not know what I am doing wrong but I have a new solution that has 2 projects in it. 1 is a cobol program that is compiled as an exe and call the second program, which I have set up in a project as a dll. Under the references in the exe program, I can not add the .dll program. What am I doing wrong?
Many Thanks for your E-Mail dated 2013 10 02. I tried my best to install my Personal Edition as good as I can. I think it functions properly. Thank you. Now I was looking for some Users Manual and I found on your Supportline the Guideline for Visual Cobol for Visual Studio 2010 (doc. VCfVS201021U1hf4.chm) but I am sorry that the right part of this document shows “Die Navigation zu der Webseite wurde abgebrochen”. So I downloaded this large document, but it is not useful for me. Did I do anything wrong? A second question please. Do I need to register myself to this Supportline-Webpage or not?
There is a manner to apply a specific font in an ACCEPT statement like I can do in a DISPLAY statement? For example: I can write DISPLAY LABEL "Enter Customer Code:" AT 0305 FONT H-FONT but I can't write ACCEPT CUSCODE AT 0335 UPDATE TAB FONT H-FONT and elements have a different size. Any solution for this? ( No ENTRY-FIELD ). Thank you. #FONTACCEPTDISPLAY
I've downloaded the following PE Serial NumberProductVersionPlatform 600000522412 Visual COBOL for Eclipse Personal Edition 2.1.Update 1 x86-64 running Red Hat Enterprise Linux 5.5/5.8 32/64 Bit When I run the installer it fails when checking for Disk Space as can be seen below: -=-==================================================================-=- Micro Focus Visual COBOL for Eclipse 2.1 - Update 1 www.microfocus.com Before installing and using this software product you must agree to be bound by the terms and conditions of the end user license agreement ("End User License Agreement") which accompanies this product. Please take this time to read the License Agreement. If you are not in agreement with the terms and conditions of the License Agreement, please contact your Account Representative. If you require a copy of the License Agreement before installing the product then answer no and run the installer with the command. ./setup_visualcobol_deveclipse_2.1_upda
I am trialling Visual COBOL. I've successfully converted my Net Express project to Visual COBOL, and it runs on my PC. How do I deploy it to another machine? (We have COBOL Server available and installed). I've found good instructions at http://msdn.microsoft.com/en-us/library/k3bb4tfd(v=vs.80).aspx which says I have to create a deployment project but there are no "Setup and deployment projects" showing in the "Other Project Types" pane, which is empty. I am using Visual Studio 2010 Shell - maybe it is not available in the Shell? To create a deployment project On the File menu, point to Add, and then click New Project. In the Add New Project dialog box, in the Project Types pane, open the Other Project Types node, click Setup and Deployment Projects, then click Setup Project in the Templates pane. In the Name box, type My Notepad Installer. Click OK to close the dialog box. The project is added to Solution Explorer, and the
I have screen 1 with a menu that has a item with exception value 1000. I have another screen that is called from screen 1 that has a different menu that also has an item with exception value 1000. We are testing Acu 9.2.1 and have found that now when the second screen is called and the user presses Alt-X to exit screen it will also perform the exception 1000 from screen 1. This does not happen in the Acu 6.2 version of the programs. A few added points: 1. This does not happen when running in Debug (so I can't trap it). 2. I can fix it by going and updating the exception values to be different (lots of coding I should not have to do). 3. This seems to only happen on screens that are create in the same project in AcuBench. 4. If the user clicks Exit on screen 2 with the mouse or hits Alt then X the error does not occur. 5. The only item on the second screen is a Acu browser element that we show information on. Thanks
We have several systems written using NetExpress 3.0 and Dialog using a Sybase database. These were written back in about 2000. The COBOL programs mostly called Sybase stored procedures but some of them have the actual SQL in the program. Back then we had a Sybase - COBOL precompiler that was used to precompile these programs. These days all of our development uses Oracle and not Sybase. We need to convert the Sybase applications to Oracle. I'm not sure what Oracle precompiler there is for COBOL or what would work with NetExpress 3.0. I've seen an Oracle product called PRO-COBOL and i'm wondering if this is what I need. Does anyone know what precompiler I can use. I know there has to be one because we originally were going to use Oracle instead of Sybase and had talked to Merant/MicroFocus about it. Any help will be appreciated.
I need an example for writing a blob into our Oracle-Database from a Cobol JVM Application . My little example does not compile: program-id. Incident as "Incident". data division. working-storage section. EXEC SQL INCLUDE SQLCA END-EXEC. EXEC SQL BEGIN DECLARE SECTION END-EXEC 01 myBlob type java.sql.Blob. EXEC SQL END DECLARE SECTION END-EXEC 01 myString pic x(32000). procedure division. move myString to myBlob goback. end program Incident. [cobol] 34 mov
Hi! I have some C# Code and i Need it in Cobol code: TextBox tb = sender as TextBox; tb.SelectAll(); Can anyone help?
Hi We have some legacy applications that are compiled with Object COBOL 4.0.07 which was installed on an older desktop (Windows 95)I'm a support guy at work and make me a petition to prepare a new developer machine to compile Coboli'm now trying prepare a new developer machine, but i dont have the install medias. the install method is all manually, copy installation and configuration from productive to new machine including config.sys and autoexec.bati have tried several configurations Win95 & Win98, in fact i have a "new" machine with windows 95 (Pentium S 166Mhz) very similar to productive sometimes works and compiled ok but after some compile test stop working..the message is:error code: 112 PC=0 Call=1 Seg=0and when compiler runs finish telling can't find the key (this is via parallel port)and i'm setup same way IRQ=07 IO=0378-037F on BIOS parallel port mode SPPi think the compiler not found the hardware key, the linking process works fine.please can instruct me how to resolve
I'm attempting to get the CobolCallingJava example for ACUCOBOL-GT version 8.1.3.1 working. When running the example, I get the following error for each occurrence of CALL C$"JAVA": Java dynamic init failed. It is the same error message as described in the following Wiki article, but in our case we're running this test in Windows 7. community.microfocus.com/.../6320.c-java-gives-error-java-dynamic-init-failed.aspx The JDK installed on my PC is jdk1.7.0_17. The Java-related settings in our COBOL config file are as follows: PRELOAD_JAVA_LIBRARY=1JAVA_LIBRARY_NAME="C:\\Program Files\\Java\\jdk1.7.0_17\\jre\\bin\\server\\jvm.dll"JAVA_OPTIONS=-Djava.class.path=R:\\Topps\\BIN\\CVM.jar;.; My CLASSPATH environment variable = R:\\Topps\\BIN\\CVM.jar;.; My PATH environment variable includes the Java bin directory, as well as the directory containing jvm.dll, i.e., ....;C:\\Program Files\\Java\\jdk1.7.0_17\\jre\\bin;C:\\Program Files\\Java\\jdk1.7.0_17\\jre\\bin\\
We have a COBOL application compiled with NetX 5.1 and have issues running it on a Windows 7 machine with hyperthreading enabled. The application is NOT multithreaded but works fine on XP machines that are hyperthreaded. The application reads data from an Oracle or Sybase DB, processes it and then writes to the same DB. Connectivity is via native ODBC. The user is able to kick off multiple instances of a script (muti-process - not multi-threaded) that calls the same application (exe). Each application will read separate sets of account data, process and write the results. So essentially multiple instances of the application are executing in separate Command Window Shells - separate processes. This scenario works well on XP - hyperthreaded or not - but not on Win 7. In fact we see this issue on Win 7, even if a SINGLE application/process/instance is kicked off. The moment we turn off Hyperthreading, the application runs fine - single or multiple-process simultan
Good Afternoon, Under Windows 7, I need to be able to disable the UAC prompt for a single application. I did a Google search on this and found a number of possibilities. I was wondering if anyone has done this? If possible the solution would be able to be run through a program without user intervention. Any thoughts? Thanks,Bob
FileShare requires that a CCITCP2 service is running on the machine. This service is started in one of two ways: If you are currently using the Enterprise Server components with Server Express or Server for COBOL, the CCITCP2 service is started when the Enterprise Server 'mfds' executable in $COBDIR/bin is invoked. If you have not configured the Enterprise Server components with Server Express or Server for COBOL , the CCITCP2 service is started by running 'ccitcp2' executable in $COBDIR/bin. Further explanation: Configuration of the Enterprise Server components may be done during the installation of Server Express, or afterwards. During installation, at one point the install script said: Your Enterprise Server requires configuration. You can either do it now or later. To do it now you need to know the alphanumeric user ID of the Enterprise Server System Administrator. To do it later, enter the following commands whilst logged in as root
I have made a program for reading a XML-file. I opened the file, control the data and close the file. The "CBL_COPY_FILE" works but when I use "CBL_DELETE_FILE" it don't work. When I use a not xml-file and copy and delete the file it works. How can I solve this problem in one program. Coding: File-control. SELECT BER218 ASSIGN TO WS-ALGFILE-NAAM ORGANIZATION IS XML &nbs
i have (on bank server) a cobol probram with excec sql, after 1020 exec sql insert give this error from mfdebug.log: NetExpress Exception Handler - 12/09/2013 08:50:01d:\\CRiOS\\PC\\RUNTIME\\NETEXPRESS\\ODBCRUN.exe caused an exception at address : 0x7750E3BEException type - EXCEPTION_ACCESS_VIOLATION on Read. Address 0x35328341Registers: EAX 00690067 EBX 022A1348 ECX 008E0000 EDX 022A1348 DS 002B ESI 3532833D ES 002B EDI 022A1340 FS 0053 GS 002B CS 0023 EIP 7750E3BE SS 002B ESP 0018F97C EBP 0018F9B0 Flags 00010202Error occurred in : C:\\Windows\\SysWOW64\\ntdll.dll, loaded at 0x774E0000.... MF server 5.1 wp5 odbcdriver from oracle client x32 11.2.0.3 i have no s
Trying out the Personal Edition looking to find the right COBOL to do a project with, but for the life of me, I cannot get the Linux version with eclipse to license. Anyone else succeeded with this and willing to share a tip or two to a very frustrated person? Also, the project involves a lot of CGI programs running on a single Linux box. I am open to the best and lowest cost options to do this. There are a half dozen maintenance programs that run either in a batch mode or as a green screen app. It doesn't matter if they run green screen or GUI to me, we can easily do either. It is mostly the extended ACCEPT we are looking for. (I said CGI, but these are mostly Ajax powered web programs, and actually they transmit XML with each transaction.) I have included the only information I can find about licensing it below, and that is not the 16 character license code the license manager is looking for. :) Thanks, -Paul Serial NumberProductVersionPlatfor
And other ctrl key shortcuts?
Good Morning, Using Net Express 3.11, what are my options for reading a DBF file? Thanks for your help, Bob
We are seeing this error in MFE 3.0 on a particular machine but do not see on other machines with the same code. What exactly does this message mean? The Help is not very "helpful"...!!!! 05 WHOLE-NUM PIC 9(13).05 DECIMALS PIC .9(03). We see it on this line of code and DECIMALS is highlighted: UNSTRING RTN-ATTR-VALU-ALPHA DELIMITED BY "."INTO WHOLE-NUM DECIMALS
I am attempting to open a website using a Browser component (in AcuBench)...once the website opens I want to auto-populate the fields where the cursor is sitting. I would think the W$KEYBUF command would do this but I am having no luck. Does anyone have any clues they might give me on how to auto-populate key strokes on a Browser window? Thanks.
My confusion over this could be causing my bug. I'll be grately deepful for the correct answer.
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.