RXS Install Procedure
From Wiki
|
| User Guide |
Installation Steps
- Unzip the downloaded file to C:\temp (or the directory of your choice).
- Issue the IBM i command:
CRTSAVF FILE(QGPL/RXS) AUT(*ALL)
- FTP the file RXS from your PC to the IBMi in BINARY mode into the save file RXS in library QGPL.
- Open a DOS prompt (Start -> Run -> enter 'cmd' and hit enter)
- Type the following into the DOS prompt, replacing the IP address with that of your iSeries:
ftp 172.29.134.41
- When prompted enter profile and password
binary
- (where c:\temp is the location of the rxs.savf)
lcd c:\temp
quote site namefmt 0cd QGPLput rxs.savf rxs.savf
quit
- Issue the IBM i commands. The value 'RXS' is used to denote where the base install of RPG-XML Suite should reside. If you are upgrading, it would be good to put 'RXS14' for this value where 14 is the corresponding version. Note that 8181 is the default port your RXS runs under in Apache. Change it to meet your needs. The default of 8181 should be fine 99% of the time. The value 'MYRXS' will be the name of your Apache web server instance and will also create a library named MYRXS for your development environment. Note that if you are upgrading, this value should be MYRXS14 where 14 is the version being upgraded to.
RSTLIB SAVLIB(RXS) DEV(*SAVF) SAVF(QGPL/RXS) RSTLIB(RXS)
CALL RXS/INSTALL PARM('RXS' '8181' 'MYRXS')
ADDLIBLE MYRXS
- Registration - When you went to www.rpg-xml.com to download RXS you should have been prompted to enter in a valid email address. An email should have been sent to that address specifying a call similar to the one below. Issue the below call.
CALL RXS/REGRXSBASE PARM('<<insert key that was emailed to you>>')
- Start the HTTP server using the below command:
STRTCPSVR SERVER(*HTTP) HTTPSVR(MYRXS)
- Open your internet browser and enter the following. Substitute your IBMi ip address:You should get the following result:
http://yourIBMiIP:8181/MYRXS/rxs1
<output myAttr="static value">I love home improvement plumbing. Especially when it leaks after you turn on the water!</output>
