RE: cobol call to c#
Bernd do you have a small example of how you did this : Call from C# into COBOL via normal linkage.RegardsNeil
View Articlecobol call to c#
We have Net Express version 3.1 and i have been trying to call a C# program from a COBOL program unsuccessfully. Any help would be appreciated.
View ArticleRE: upgrade from NE 5.1.6 to NE 5.1.12, diacritic problem
My problems are not the same, but similar.I solved the case by opening the XML file first as simple line sequential file. Then analyze the contents one byte after another. If I find a possible UTF...
View ArticleRE: upgrade from NE 5.1.6 to NE 5.1.12, diacritic problem
In adition to my previous report, here a more detailed description of the problem.The wrong coded XML that I received starts with the following:<?xml version="1.0"...
View ArticleRE: upgrade from NE 5.1.6 to NE 5.1.12, diacritic problem
Rolf, We should be able to handle this error condition in a better manner than a RTS 114 error that would alert you to the condition but allow the program to continue.Have you reported this to Customer...
View ArticleRE: upgrade from NE 5.1.6 to NE 5.1.12, diacritic problem
Yes, I reported it 11/03/2015 with Report 2802674 . As I found a way around the Problem they asigned a medium priority.
View ArticleRE: upgrade from NE 5.1.6 to NE 5.1.12, diacritic problem
I just tested the problem here and it does still exist in the latest wrappack of NX 5.1 but it appears to already be fixed in later products like Studio 6.0 and Visual COBOL 2.3. In these products an...
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Hi Shatty,First off I notice you are executing "vuescan.exe" asynchronously so the program can never pass anything back to the program that initiates it. You notice that I say initiates rather than...
View Articleupgrade from NE 5.1.6 to NE 5.1.12, diacritic problem
We have upgraded (Windows) NE 5.1.6 to NE 5.1.12.After this update there is an automatic conversion from 2 bytes diacritic to one character diacriticNow some my programs are not working any more...
View ArticleRE: upgrade from NE 5.1.6 to NE 5.1.12, diacritic problem
I have upload a program and a file, where you can test the diacritic problem. It is a zip file.I hope it can be solved quickly (incidentnumber 2870879)
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Actually, there is one more way that you can communicate data between different rununits and that is by using shared memory and the NX library routines, CBL_PUT_SHMEM_PTR and CBL_GET_SHMEM_PTR.You can...
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Thanks Michael,, you're right, I will to make a test
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Hi Chris,Probably not a goer in this case though Chris as Shatty is communicating with a non-COBOL program ...I'll admit to a bias against using shared memory for interprocess communication - there's...
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Hi Michael,Sorry, I completely missed the part about it being a non-COBOL process even though it is right there in the post title.Thanks
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Hi Michael,Thanks for your feedback, I understand the problem I’m facing as you did explain it, but I really get lost how to solve it out as you mentioned in that two choices,I will appreciate it if...
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Hi Shatty,we have a quite similar need, and solved it very easy. Our Netexpress does not scan directly (that is done Independent with a Kodak ScanMate i1120 scanner and the included Software) We scan...
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Hi RolfThanks for your interest and feedback,, I really don't have good experience in Library routines, thus I can’t follow up how to use “CBL_DIR_SCAN_READ” .Kindly if you send me a sample program of...
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
Here the just compiled program, a DEMO from MICRO FOCUS.000001$SET FOLDCOPYNAME"LOWER"000002*000004*000009 identification division.000010 program-id. dirdemo.000011 data division.000012 working-storage...
View ArticleGETTING FEED BACK FROM NON COBOL CALLED PROGRAM
hello,,I'm using the bellow routine it's working fine,move spaces to RU-Command-Line. string "vuescan.exe" delimited by size into RU-Command-Line end-string.move length of RU-Command-Line to...
View ArticleRE: GETTING FEED BACK FROM NON COBOL CALLED PROGRAM
For COBOL to NON COBOL you could create a GUID in the COBOL program and pass that to the NON COBOL program, the NON COBOL program could use it to write out a file. On return read then delete the...
View Article