H
HMS Surprise
Greetings,
I am using a tool called maxq (maxq.tigris.org) that acts a proxy and
is used for web page testing. It generates jython scripts for playback
of web sessions and testing. It lacks a tool for parsing a web page,
it only provides the return code. I need to parse the page to get some
timestamp information. Since the tool has access to java routines I
was wondering if there is one I could use for this purpose. Searching
the archive I found a thread with the following:
URL url = new URL("http://.......");
URLConnection URLconnect = url.openConnection();
BufferedReader br = new BufferedReader(new
InputStreamReader(URLconnect.getInputStream()))
This gives me hope, but I do not know what the mechanism is for
importing java libs.
Thanks,
jh
I am using a tool called maxq (maxq.tigris.org) that acts a proxy and
is used for web page testing. It generates jython scripts for playback
of web sessions and testing. It lacks a tool for parsing a web page,
it only provides the return code. I need to parse the page to get some
timestamp information. Since the tool has access to java routines I
was wondering if there is one I could use for this purpose. Searching
the archive I found a thread with the following:
URL url = new URL("http://.......");
URLConnection URLconnect = url.openConnection();
BufferedReader br = new BufferedReader(new
InputStreamReader(URLconnect.getInputStream()))
This gives me hope, but I do not know what the mechanism is for
importing java libs.
Thanks,
jh