|
I forgot to explain how to use this. From a command line (or in a CL) execute this command. JAVA CLASS('/Directory/AccessURL') PARM('http://www.company.com/startjob.asp') CLASSPATH('/Directory') Remember java is case sensitive, so watch your case. Also, you NEED to include the http:// part or the URL object doesn't know what to do. -Walden -----Original Message----- From: Walden Leverich [mailto:walden@techsoftinc.com] Sent: Friday, February 19, 1999 9:19 AM To: MIDRANGE-L@midrange.com Subject: RE: AS/400 as an http client OK guys. Here is the code to access a web page on another server. Presumably the page accessed would be an ASP page (or other CGI-like page) that did something. I haven't tried compiling this code on the 400, I compile on the PC and upload the class file. I used this exact code and a short ASP program on my webserver to start Excel from the AS/400. Neat, but useless. Dennis, I hope this fits your need. -Walden ------------------- Start Code ---------------- import java.net.*; import java.io.*; public class AccessURL { public static void main(String[] args) { try { URL u = new URL(args[0]); BufferedReader in = new BufferedReader( new InputStreamReader(u.openStream())); String line; in.readLine(); //Force page access } //End try catch (Exception e) { System.out.println("Error " + e); } //End catch } //End main } //End class ------------------- End Code ---------------- -----Original Message----- From: Glenn Gundermann [mailto:ggundermann@rachisholm.com] Sent: Thursday, February 18, 1999 4:47 PM To: MIDRANGE-L@midrange.com Subject: Re: AS/400 as an http client Walden, That would be great! Glenn Gundermann Ronald A. Chisholm Limited Toronto ggundermann@rachisholm.com Walden Leverich wrote: > Dennis, > > What version of OS/400? If you are on V4R3 or later you could write a short > Java program that acts as a web agent. The program is rather simple, I just > don't have the code with me. Let me know if you need me to post it. > > -Walden +--- | This is the Midrange System Mailing List! | To submit a new message, send your mail to MIDRANGE-L@midrange.com. | To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com. | To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +--- +--- | This is the Midrange System Mailing List! | To submit a new message, send your mail to MIDRANGE-L@midrange.com. | To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com. | To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +--- +--- | This is the Midrange System Mailing List! | To submit a new message, send your mail to MIDRANGE-L@midrange.com. | To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com. | To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.