open remote file without modules

open remote file without modules

am 04.01.2006 19:03:41 von mkc

Any ideas how to open a remote file (image to be exact) without any
modules involved (like LWP)?

Re: open remote file without modules

am 04.01.2006 20:57:04 von Paul Lalli

mkc wrote:
> Any ideas how to open a remote file (image to be exact) without any
> modules involved (like LWP)?

1) Define "remote"

2) Why?

Paul Lalli

Re: open remote file without modules

am 04.01.2006 21:12:25 von Jim Gibson

In article <1136397821.662727.27270@g47g2000cwa.googlegroups.com>, mkc
wrote:

> Any ideas how to open a remote file (image to be exact) without any
> modules involved (like LWP)?

Is the remote system on which the file is stored running a web server
or any other type of file sharing service such as NFS, FTP, SMB, or
SSH?

If it is running a web server, then you can open a socket to the system
on port 80, send an appropriate GET command, and read the response.
However, it might get a little tricky to parse the reponse since it
will contain binary data.

Can you explain why you don't want to use a module?

Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com

Re: open remote file without modules

am 04.01.2006 22:19:06 von mkc

since this is my study excercise to solve the problem without using
modules :|
i need to read some rfcs i suppose, thank you