I have to create a C program which will run on Linux server. It will take information from Oracle database, create a local file and then copy that file to Windows server. I know how to create a local file on Linux server. But what is the way to copy it to windows server from C?
|
|
Mount Windows Share first and then create the file in the mounted directory. |
||
|
|
|
|
It depends on the type of connectivty between the two machines and on the level of security you have to achieve. The simplest scenario would be with the two machine on the same LAN and no particular security. In this case possible solution would be:
More complicated scenario when security is a concerm, would require the use of scp or sftp over and SSL connection. Also the libcurl with https could provide a good enough solution. My advice is: try Samba first and see if meets your need, all the other options will require more work to you as a programmer. |
||
|
|
|
|
Perhaps you could simply use smbclient? No need to setup any servers or anything, just have a shared drive of some kind on the server.
Then you can just 'put' and 'get' whichever files you like betwen the current directory on the linux box and your windows server.
Thats about it. |
||
|
|
|
|
Yep - just mount the windows box using whatever network filesystem you want (e.g. Samba) and copy the file into that directory using normal IO primitives. Mark |
||
|
|
|
|
Or use FTP. There's plenty of FTP libraries you can link into your Linux C code. |
||
|
|
|
|
The windows machine should provide a mean to accept this behaviour first (FTP comes to mind). You may develop an application to run on windows machine to accept the file, but easier is use one of the already developed ones. filezilla is an example. For the actual question, how to upload the file, any ftp client would do the trick. |
||
|
|
|
|
How about using SMTP and mailing it? |
||
|
|
