hi, I did a custom status at server side,but I got a null value of the status's name at client side . I found the codes about this in the HttpServerConverter as follow,
if (response.getStatus() != null) {
response.getHttpCall().setStatusCode(
response.getStatus().getCode() );
response.getHttpCall().setReasonPhrase(
response.getStatus().getDescription() );
}
Thanks,
David

