From 36389f71dc32df70c6c458afd3e9bd5964746740 Mon Sep 17 00:00:00 2001 From: Mike McCune Date: Fri, 10 Jul 2009 15:07:48 -0700 Subject: more better xml annotations and making BaseApi more generic --- proxy/code/scripts/test-connection.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'proxy/code/scripts') diff --git a/proxy/code/scripts/test-connection.py b/proxy/code/scripts/test-connection.py index 259ba98..9cd844b 100755 --- a/proxy/code/scripts/test-connection.py +++ b/proxy/code/scripts/test-connection.py @@ -35,3 +35,8 @@ response = conn.getresponse() print response.status, response.reason rsp = response.read() print(rsp) + +response = urllib.urlopen('http://localhost:8080/candlepin/consumer/list') +rsp = response.read() +print(rsp) + -- cgit