Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28633 Discussions

Opening a connection to a remote HTTP or FTP server.

lessonfree
Beginner
458 Views
  • Is it possible, in general, to open a connection to a remote HTTP or FTP server from fortran code?
0 Kudos
1 Solution
Ron_Green
Moderator
458 Views
There are no language intrinsics in Fortran to support HTTP or FTP connections. One would have to use an external library of some kind and make a call into that library.

So you'd have to find a library that supported that functionality, more than likely a library written in C, C++, etc. and make a mixed language call into that library.

ron

View solution in original post

0 Kudos
1 Reply
Ron_Green
Moderator
459 Views
There are no language intrinsics in Fortran to support HTTP or FTP connections. One would have to use an external library of some kind and make a call into that library.

So you'd have to find a library that supported that functionality, more than likely a library written in C, C++, etc. and make a mixed language call into that library.

ron
0 Kudos
Reply