I'm trying to create a java applet that will make a URL GET query. Right now I am using the URL object to make the connection but I can't seem to get it to work. Is there a better way of doing this?
Currently I'm just doing a:
URL url = new URL( cam_addr + cam_path + "?" + com );
url.openConnection();
I don't need to read any returned page information or anything. I am using this to control a pan/tilt/zoom monitoring camera, so it just needs to be able to send the GET request query.
Thanks
Start Free Trial