Hi, I tried using jclouds glance labs 1.7.0 and attempted listing existing images but it throws some exception which is exactly similar to one previously posted -
http://mail-archives.apache.org/mod_mbox/jclouds-notifications/201403.mbox/%3Cjclouds/jclouds-labs-openstack/pull/82/[email protected]%3E my code is glanceApi = ContextBuilder.newBuilder(provider) .credentials(identity, password) .endpoint("http://enpoint ip/v2.0/") .modules(modules) .buildApi(GlanceApi.class); ImageApi imageApi = glanceApi.getImageApiForZone("RegionOne"); System.out.println(imageApi.listInDetail().concat()); I basically need image upload and download functionality from glance Thank you
