Hi Jonathan
If you built the examples from source, could you modify the error
handling line in [1] to also print out the type of the exception and the
stacktrace? E.g. from:
} catch (Exception e) {
System.err.println("error: " + e.getMessage());
error = 1;
} finally {
to
} catch (Exception e) {
System.err.println("error: " + e.getMessage() + "(" + e.getClass() +
")");
e.printStackTrace(System.err);
error = 1;
} finally {
Could you then run the example again and add the output to this thread?
Thanks!
ap
[1]
https://github.com/jclouds/jclouds-examples/blob/master/compute-basics/src/main/java/org/jclouds/examples/compute/basics/MainApp.java#L237