Ok..the reason for the earlier question was to make sure you had a version of QVGEN that could run on something after V5.4.
We do have a solution to allow QVGEN and QEGL to coexist and some customers are using it But we need to check to make sure it is still current, so it might take a week or two to get that done.
My suggestion is to open a PMR and request it.
The readme would be something like this and the real work was to make sure the activation groups were the same since we do use shared memory.
Also, you would include QEGL ahead of QVGEN in the library list (or at least have QVGEN accessible on the system). If I remember right (it has been a couple of years)... the only reference to QVGEN is hard coded....so it will not search the library list.
Sample readme;
1) copy qvgen/qvgnmem to qvgen/qvgnmemold so that you have a backup
2) copy qegl/qvgnmem to qegl/qvgnmemold so that you have a backup
3) on the iSeries, you need to create a save file so you can restore the file I am attaching. You do this by issuing this iSeries command: CRTSAVF FILE(QGPL/EGLVAGSHR)
4) transfer the attached savf file as binary to your iSeries, by using ftp and the following commands:
[
ftp your_iseries_name_or_ip_address
(enter your userid and password)
bin
quote site namefmt 0
put EGLVAGSHR.SAVF QGPL/EGLVAGSHR
once the upload completes, then continue with these commands:
5) create a new library with the CRTLIB command for library EGLVAGSHR
6) unpack the save file by using this command: RSTLIB SAVLIB(EGLVAGSHR) DEV(*SAVF) SAVF(QGPL/EGLVAGSHR)
You will now have our replacement modules. To install them, do the following:
7) copy eglvagshr/qvgnmemegl to qegl/qvgnmem
8) copy eglvagshr/qvgnmemvag to qvgen/qvgnmem
You will probably need to logoff/logon again if you are using the same userid to run your application.
Execute the applications and make sure things work, including other VAG programs that are standalone.
markevans