Date: Fri, 23 May 2008 14:20:29 -0700
Reply-To: Jack Hamilton <jfh@STANFORDALUMNI.ORG>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Jack Hamilton <jfh@STANFORDALUMNI.ORG>
Subject: Re: Getting a ZIP file from a remote website in MVS/Z/os
In-Reply-To: <9118EF7037E140479786802E36812D750122BBA3@syssrv35.ad.ilstu.edu>
Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
See <http://www.excursive.com/sas/weblog/2007/01/copy-zip-file-from-internet-and-then.html
>
Use your ZIP program rather than the unsupported SASZIPAM engine.
On May 23, 2008, at 9:35 AM, Davis, Kriss P wrote:
> I scanned the SAS archives for a solution to this, but did not find
> a thread that dealt with this.
>
> I have the following website address:
>
> http://www.isbe.net/
>
> If you navigate to:
>
> http://www.isbe.net/research/
>
> there is a ZIP file titled "2006-2007 Report Card Data"
>
> If I click on this, my WINDOWS winzip utility will start up and ask
> me if I want to open it.
>
> What I want to do however, is run a MVS/Z/os batch job that executes
> SAS to retrieve this file and place it on a disk locally. I can
> then use MVS utilities to unzip it and process it.
>
> I found the some excellent examples in http://www.dc-sug.org/ftp.pdf
> but I can't seem to quite get there.
>
> Here is what I have so far. I have tried several variations.
>
> filename datadown ftp
> 'rc07.zip'
> host='www.isbe.net'
> cd='research/zip'
> user='anonymous' pass='kpdavis@'
> debug;
>
> data S_Am;
> infile datadown;
> ;
> run;
>
> I get the following messages:
>
> WARNING: End of file.
> ERROR: Invalid file pointer.
> ERROR: Invalid file pointer.
> ERROR: Invalid file pointer.
>
> First, I am not sure the FTP method is what I ought to be using. I
> did try the URL option in the FILENAME, but did not get that far
> with it either. The DEBUG does not put out any info like it is
> trying to log on. Do I need a "set of commands" to get the FTP
> "GET" processing going?
>
> I think I am just barking up the wrong tree and need a direction to
> be pointed in.
>
> Thanks in advance. (I will be out of the office until Tuesday 5/27).
>
> Kriss Davis
>
> e-Merge
> Merging People, Process, and Technology
> Illinois State University
> 3470 Administrative Information Systems
> Normal, IL 61790-3470
> kpdavis@ilstu.edu
> (309) 438-3101
>
|