files on a linux box?
-
I have a web app running on a windows machine. I need it to copy files from a linux box to the box the app resides on. Any idea if this is possible? How would I proceed?
You could use samba, ftp, or http just off the top of my head.
-
I have a web app running on a windows machine. I need it to copy files from a linux box to the box the app resides on. Any idea if this is possible? How would I proceed?
Http PUT and GET?
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
You could use samba, ftp, or http just off the top of my head.
-
Http PUT and GET?
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
I haven't heard of samba:^), I wasn't sure that http could could do what I wanted:~ , and I didn't even think of ftp:doh:! Thanks for giving my brain a jump start!:-D
Samba is the Linux implementation of "network neighborhood" so you could access it like \\machinename\folder. With http you just put in a path the web server is using and download it like any other file you on a webpage (http://machinename/file.ext)
-
Samba is the Linux implementation of "network neighborhood" so you could access it like \\machinename\folder. With http you just put in a path the web server is using and download it like any other file you on a webpage (http://machinename/file.ext)