I have a C++ application and FORTRAN application which are communicating via file. (Both direction)
FORTRAN application is writing data to file and C++ is reading the data from the file. Now a new requirement has come wherein I have to directly communicate (as file operations are expensive) with C++ code form FORTRAN and from FORTRAN to C++. I implemented socket on C++ side and tried to implement the socket on FORTRAN side. I am not getting enough information on internet about sockets on FORTRAN.
The FORTRAN legacy code is written in g77. C++ is in MFC.
- Is there any better approach to achieve this apart from socket communication?
- Any links about sockets on FORTRAN using g77 will be helpful.
I know, I should not be asking for links on this forum. If this question doesn’t belong to this forum, where can I ask this kind of question?