how to get http responses continuously to a java application?
- by senrulz
I have the coding shown below where I have sheduled to get a http response from a php web server page.
public static void stopPHPDataChecker() {
canStop=true;
}
public static void main (String args[]) {
// http request to the php page and get the response
PHPDataChecker pdc = new PHPDataChecker();
…