Cannot send complex data objects to custom service

String is ok

BackendlessUser e.g. results in “null”

(v.16)

I am not sure how we missed this post. Sorry about that. I just tried with a service deployed in the cloud with the following two methods:

  public BackendlessUser echoUser( BackendlessUser user )
  {
    return user;
  }


  public Person echoPerson( Person p )
  {
    return p;
  }

There are two issues:

    echoUser is not even hit in the service echoPerson reaches the service, but the result does not reach the calling client (using Java on the client, but works if you use REST client)
So with anything outside of BackendlessUser, it will work with REST-based clients. I will assign internal tickets for these issues.