private void tryConfiguration(JSONConfiguration configuration) throws Exception {
final JSONJAXBContext ctx = new JSONJAXBContext(configuration, NamespaceBean.class);
final JSONMarshaller jm = ctx.createJSONMarshaller();
final JSONUnmarshaller ju = ctx.createJSONUnmarshaller();
NamespaceBean beanTwo;
final StringWriter sw = new StringWriter();
jm.marshallToJSON(one, sw);
System.out.println(String.format("%s", sw));
beanTwo = ju.unmarshalFromJSON(new StringReader(sw.toString()), NamespaceBean.class);
assertEquals(one, beanTwo);
}