Re: How to pull webpage into batch job

2017-04-27 Thread Bill Ashton
43573?mt=2 > > > > From: "Barkow, Eileen" <ebar...@doitt.nyc.gov> > To: IBM-MAIN@LISTSERV.UA.EDU > Date: 27/04/2017 14:51 > Subject:Re: How to pull webpage into batch job > Sent by:IBM Mainframe Discussion List <IBM-MAIN@LISTSERV

Re: How to pull webpage into batch job

2017-04-27 Thread Martin Packer
rkow, Eileen" <ebar...@doitt.nyc.gov> To: IBM-MAIN@LISTSERV.UA.EDU Date: 27/04/2017 14:51 Subject: Re: How to pull webpage into batch job Sent by:IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> Thank you Andrew for the info about Jsoup - I had never hea

Re: How to pull webpage into batch job

2017-04-27 Thread Barkow, Eileen
@LISTSERV.UA.EDU] On Behalf Of Andrew Rowley Sent: Thursday, April 27, 2017 3:19 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: How to pull webpage into batch job I would suggest Java as well. There are open source libraries that can do the HTML parsing too e.g. Jsoup. I just tested this example on z/OS

Re: How to pull webpage into batch job

2017-04-27 Thread Andrew Rowley
I would suggest Java as well. There are open source libraries that can do the HTML parsing too e.g. Jsoup. I just tested this example on z/OS, it worked (fetch the Wikipedia home page and list items from the In the news section): import java.io.IOException; import org.jsoup.Jsoup; import

Re: How to pull webpage into batch job

2017-04-26 Thread Barkow, Eileen
} // end of class definition -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Paul Gilmartin Sent: Wednesday, April 26, 2017 12:16 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: How to pull webpage into batch job On Wed, 26 Apr 2017 08:18

Re: How to pull webpage into batch job

2017-04-26 Thread Paul Gilmartin
On Wed, 26 Apr 2017 08:18:31 -0500, John McKown wrote: >On Wed, Apr 26, 2017 at 7:55 AM, Bill Ashton wrote: >> >> I have some internal webpages (built from multiple systems) that contain >> particular information that I want to capture in a batch job, and then I >> will combine that with other

Re: How to pull webpage into batch job

2017-04-26 Thread Dale R. Smith
On Wed, 26 Apr 2017 08:55:29 -0400, Bill Ashton wrote: >Hello again! I would like to know what you all are using to access web >pages in batch JCL. > >I have some internal webpages (built from multiple systems) that contain >particular information that I want to capture

Re: How to pull webpage into batch job

2017-04-26 Thread John McKown
On Wed, Apr 26, 2017 at 10:25 AM, Rob Schramm wrote: > Isn't this a job for cURL? > ​Definitely, as shown in the REXX example. But cURL​ may not be installed. It is part of the optional "ported" UNIX utilities. Which, I am fairly sure, is now distributed (and requires

Re: How to pull webpage into batch job

2017-04-26 Thread Rob Schramm
Isn't this a job for cURL? Rob Schramm On Wed, Apr 26, 2017, 9:18 AM John McKown wrote: > On Wed, Apr 26, 2017 at 7:55 AM, Bill Ashton > wrote: > > > Hello again! I would like to know what you all are using to access web > > pages in batch

Re: How to pull webpage into batch job

2017-04-26 Thread John McKown
On Wed, Apr 26, 2017 at 7:55 AM, Bill Ashton wrote: > Hello again! I would like to know what you all are using to access web > pages in batch JCL. > > I have some internal webpages (built from multiple systems) that contain > particular information that I want to capture

How to pull webpage into batch job

2017-04-26 Thread Bill Ashton
Hello again! I would like to know what you all are using to access web pages in batch JCL. I have some internal webpages (built from multiple systems) that contain particular information that I want to capture in a batch job, and then I will combine that with other data from other mainframe