Skip to main content

This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

To my knowledge, the RMNET routines are only in the shared library builds and not in the static builds.


This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

Interesting. So what would that mean in terms of deployment? Can we deploy the share libraries alongside our existing static library build? Or would we have to switch exclusively to the shared library build?


This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

Interesting. So what would that mean in terms of deployment? Can we deploy the share libraries alongside our existing static library build? Or would we have to switch exclusively to the shared library build?


This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

Interesting. So what would that mean in terms of deployment? Can we deploy the share libraries alongside our existing static library build? Or would we have to switch exclusively to the shared library build?


This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

A static port should be able to load a shared library. So if install both in different directories, the static runtime should be able to use the -y to load the RMNet shared libraries.


This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

Thank you. I will try this before end of day today and will hopefully be able to mark this answered!


This is a followup to a previous inquiry about the RMNET library routines:

community.microfocus.com/.../10648.aspx

In that thread I included a test program which I could have sworn worked on Feb. 14, 2014. But it doesn't work today, so I'm puzzled. My CALL "NetInit" statement is landing in the ON EXCEPTION block.

We're running the static library build from acucob921pmk60st.tar.gz. My understanding back in February was that the static library build would include the RMNET routines, so we would not have to load the RMNET library by using the runcbl command's -y option.

Obviously I'm missing something. Any idea what's needed to use the RMNET library routines from the static library build of ACUCOBOL 9.2.1 in Linux?

Thanks!


#RMNet
#Linux
#ACUCOBOL9.2.1

Yes, that worked. The static runtime can load the RMNET shared library using the -y flag, and the library routine calls work. Thank you!