}
// Get response
JaxbExceptionResponse exceptionResponse = null;
JaxbCommandsResponse commandResponse = null;
int responseStatus = httpResponse.code();
try {
String content = httpResponse.body();
if( responseStatus < 300 ) {
commandResponse = deserializeResponseContent(content, JaxbCommandsResponse.class);
} else {