• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

basic FTP between a unix and linux machine

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi ,
i have a unix machine , form this machine i have to send some data to a linux machine and invoke a process in the linux machine, this process will generate a GIF image , i have to capture that GIF image and get the image back to the unix machine.....
can any body please tell me how to connect to the linux machine , invoke a process and get the image back... , the unix and linux machine are in the netwok..
please help....
thanks...
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not quite "basic" FTP. You want the Linux machine to offer a service on some port that the Unix machine can send data to and receive the GIF from. Assuming both machines have a Java VM, you could accomplish this by fleshing out the following server code and running it on the Linux box:

Then running a client on the Unix box that looks something like this:
 
Drove my Chevy to the levee but the levee was dry. A wrung this tiny ad and it was still dry.
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic