akash-k
(Akash K)
May 9, 2016, 5:41am
1
BackendlessFault{ code: ‘Server.Processing’, message: ‘exception during method invocation’ }
I get above error whenever I remove Parent Object which has relation with multiple table.
But only first time I get this error, then onward removing works fine.
What is happening?
Could you demonstrate the code which results in the error?
akash-k
(Akash K)
May 10, 2016, 9:24am
3
Backendless.Persistence.of(ParkingLot.class).remove(parkingLot, new AsyncCallback<Long>() {
@Override
public void handleResponse(Long response) {
Log.d(TAG, "handleResponse: " + response);
showProgressWheel(false, progressWheel);
Toast.makeText(ParkingLotDetailActivity.this, “Removed Successfully”, Toast.LENGTH_SHORT).show();
LotListActivity.lotListActivityInstance.finish();
overridePendingTransition(android.R.anim.fade_out, android.R.anim.fade_in);
startActivity(new Intent(ParkingLotDetailActivity.this, LotListActivity.class));
finish();
}
@Override
public void handleFault(BackendlessFault fault) {
Log.d(TAG, "handleFault: " + fault);
showProgressWheel(false, progressWheel);
}
});
Hi Akash,
Do you still experience the error?