Giter VIP home page Giter VIP logo

rdwget's Introduction

RDWGET

IBM i RPGLE Scripted Web Retrieval

		RDWGET IBM i Scripted Web Retrieval (legacy http:// support only)
		open source RPG ILE /free code 

RDWGET is a personal project I wrote for retrieving and posting data from web sites using Scott Klement's HTTPAPI library ( available for download from http://www.scottklement.com/httpapi/ ) Excellent support for HTTPAPI is provided by the FTPAPI - HTTPAPI mailing list you'll find there at time I wrote this.

I provide no explicit support for https. It's example source code for a script language with parser and execute running on IBM i. It is robust, code complete for what I wrote it for and tested. It would need to be extended for any use.

The main thing I provided in RDWGET is a script language (RPGscript, why not), parser, and execution to specify pages or files to retrieve, positioning on the page, scraping text between two markers, etc. Also provided is syntax for setting form variables to post to a site. Four test scripts are included with the RDWGET source code. A snippet flavor of it:

 get (wrkpath: "HTTP://www.rdwrites.com/iseries/testcgiget?varscript=" + %rdwscript + "&varuser=" + %rdwuser + "&varkey=TESTINP1") 
 find (wrkpath: "<html><body>")
 eval &TESTOUT1 = %rdwsubst(wrkpath: "<p>": "</p>")  //set var value to text between two finds

as part of an example of scraping text from the page, or

 // post
 setvar (form: "message": "Test post from IBM i RDWGET")
 setvar (form: "mode": "reply")
 setvar (form: "sid": &SID)
 setvar (form: "t": "4180")
 setvar (form: "post": "Submit")
 post (wrkpath: "posting.php")

as part of a script to login, post, and logout of a site.

A configuration file provides locations for input and output among other things for each script. RDWGET is all subprocedures (except a small main entry in the RDWGET program) with two service programs (in addition to that invoked by HTTPAPI calls) and supports including scripts from within scripts if desired.

regards, Ralph Daugherty [email protected]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.